diff options
author | Tarek Soliman | 2012-02-24 13:23:55 -0600 |
---|---|---|
committer | Tarek Soliman | 2012-02-27 13:00:56 -0600 |
commit | 6afac4e01eba5c297e99597dd2cb17c2e4732a7e (patch) | |
tree | da3a7473c70f529a7cc399975349607d412eb713 /backends/platform/sdl/hardwarekeys.cpp | |
parent | b0f961924a856b71ebffdb834db122145c4c10e5 (diff) | |
download | scummvm-rg350-6afac4e01eba5c297e99597dd2cb17c2e4732a7e.tar.gz scummvm-rg350-6afac4e01eba5c297e99597dd2cb17c2e4732a7e.tar.bz2 scummvm-rg350-6afac4e01eba5c297e99597dd2cb17c2e4732a7e.zip |
KEYMAPPER: Rename HardwareKey to HardwareInput
Diffstat (limited to 'backends/platform/sdl/hardwarekeys.cpp')
-rw-r--r-- | backends/platform/sdl/hardwarekeys.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/sdl/hardwarekeys.cpp b/backends/platform/sdl/hardwarekeys.cpp index 5fb4473ebd..0b73bfa467 100644 --- a/backends/platform/sdl/hardwarekeys.cpp +++ b/backends/platform/sdl/hardwarekeys.cpp @@ -175,7 +175,7 @@ static const ModifierTableEntry sdlModifiers[] = { { 0, 0, 0, false } }; -Common::HardwareKeySet *OSystem_SDL::getHardwareKeySet() { - return new HardwareKeySet(sdlKeys, sdlModifiers); +Common::HardwareInputSet *OSystem_SDL::getHardwareInputSet() { + return new HardwareInputSet(sdlKeys, sdlModifiers); } #endif |