remove typedef

This commit is contained in:
Glenn Maynard
2007-01-13 06:44:16 +00:00
parent badbe3ddd6
commit 4b16146370
2 changed files with 3 additions and 5 deletions
+2 -2
View File
@@ -52,7 +52,7 @@ struct AutoJoyMapping
const char *szGame;
const char *szDriverRegex; // reported by InputHandler
const char *szControllerName; // the product name of the controller
InputMapper::Mapping maps[32];
InputMapping maps[32];
};
#define END_MARKER {-1, DeviceButton_Invalid, GameButton_Invalid, false }, // end marker
const InputMapping g_DefaultKeyMappings[] =
@@ -498,7 +498,7 @@ void InputMapper::Unmap( InputDevice id )
UpdateTempDItoGI();
}
void InputMapper::ApplyMapping( const Mapping *maps, GameController gc, InputDevice id )
void InputMapper::ApplyMapping( const InputMapping *maps, GameController gc, InputDevice id )
{
map<GameInput, int> MappedButtons;