Changeset 7635 in orxonox.OLD for branches/qt_gui/src/lib/event/key_mapper.cc
- Timestamp:
- May 17, 2006, 10:12:33 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/qt_gui/src/lib/event/key_mapper.cc
r7256 r7635 71 71 * and you do not have to care about The namings, as they might change 72 72 */ 73 orxKeyMappingmap[] = {73 KeyMapper::KeyMapping KeyMapper::map[] = { 74 74 {&KeyMapper::PEV_FORWARD, CONFIG_NAME_PLAYER_FORWARD}, 75 75 {&KeyMapper::PEV_BACKWARD, CONFIG_NAME_PLAYER_BACKWARD}, … … 104 104 {&KeyMapper::PEV_PAUSE, CONFIG_NAME_PAUSE}, 105 105 {&KeyMapper::PEV_QUIT, CONFIG_NAME_QUIT}, 106 {NULL, NULL}106 {NULL, ""} 107 107 }; 108 108 … … 266 266 for(int i = 0; map[i].pValue != NULL; ++i) 267 267 { 268 PRINT(0)("%s = %i\n",map[i].pName , *map[i].pValue);268 PRINT(0)("%s = %i\n",map[i].pName.c_str(), *map[i].pValue); 269 269 } 270 270 PRINT(0)("=======================================================\n");
Note: See TracChangeset
for help on using the changeset viewer.