renamed libpg to libbear
[physics.git] / src / config / reader.cpp
index e8757dd..86afa68 100644 (file)
@@ -16,7 +16,9 @@
  */
 
 #include "reader.h"
-#include "../debug.h"
+
+#include <bear/debug.h>
+using namespace bear;
 
 #include <iostream>
 using std::cerr;
@@ -97,9 +99,6 @@ void processLine(const string& str)
         {
             *(key::sdlMap[name]) = key;
         }
-        cout << name << endl;
-        cout << value << endl;
-        cout << key << endl;
     }
 }
 
@@ -121,11 +120,11 @@ bool extractLine(const string& str, string* name, string* value)
 
     int char_pos = 0;
 
-    int name_start;
-    int name_end;
+    int name_start = 0;
+    int name_end = 0;
 
-    int value_start;
-    int value_end;
+    int value_start = 0;
+    int value_end = 0;
 
     const char* c_str = str.c_str();
 
@@ -211,7 +210,7 @@ void createKeyMap()
     for (int i = 'A'; i <= 'Z'; i++)   // uppercase
     {
         buf[0] = (char)i;
-        keyMap[buf] = (SDLKey)i;
+        keyMap[buf] = (SDLKey)(i + 'a' - 'A');
     }
     for (int i = 'a'; i <= 'z'; i++)   // lowercase
     {