aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/linuxmoto
diff options
context:
space:
mode:
authorTarek Soliman2012-02-24 13:23:55 -0600
committerTarek Soliman2012-02-27 13:00:56 -0600
commit6afac4e01eba5c297e99597dd2cb17c2e4732a7e (patch)
treeda3a7473c70f529a7cc399975349607d412eb713 /backends/platform/linuxmoto
parentb0f961924a856b71ebffdb834db122145c4c10e5 (diff)
downloadscummvm-rg350-6afac4e01eba5c297e99597dd2cb17c2e4732a7e.tar.gz
scummvm-rg350-6afac4e01eba5c297e99597dd2cb17c2e4732a7e.tar.bz2
scummvm-rg350-6afac4e01eba5c297e99597dd2cb17c2e4732a7e.zip
KEYMAPPER: Rename HardwareKey to HardwareInput
Diffstat (limited to 'backends/platform/linuxmoto')
-rw-r--r--backends/platform/linuxmoto/hardwarekeys.cpp4
-rw-r--r--backends/platform/linuxmoto/linuxmoto-sdl.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/linuxmoto/hardwarekeys.cpp b/backends/platform/linuxmoto/hardwarekeys.cpp
index da093c6508..e1a5757430 100644
--- a/backends/platform/linuxmoto/hardwarekeys.cpp
+++ b/backends/platform/linuxmoto/hardwarekeys.cpp
@@ -106,7 +106,7 @@ static const Mod modifiers[] = {
{ 0, 0, 0, false }
};
-Common::HardwareKeySet *OSystem_LINUXMOTO::getHardwareKeySet() {
- return OSystem_SDL::getHardwareKeySet();
+Common::HardwareInputSet *OSystem_LINUXMOTO::getHardwareInputSet() {
+ return OSystem_SDL::getHardwareInputSet();
}
#endif
diff --git a/backends/platform/linuxmoto/linuxmoto-sdl.h b/backends/platform/linuxmoto/linuxmoto-sdl.h
index 9a0be56e11..27f4e744bc 100644
--- a/backends/platform/linuxmoto/linuxmoto-sdl.h
+++ b/backends/platform/linuxmoto/linuxmoto-sdl.h
@@ -31,7 +31,7 @@ public:
#ifdef ENABLE_KEYMAPPER
// FIXME: This just calls parent methods, is it needed?
- virtual Common::HardwareKeySet *getHardwareKeySet();
+ virtual Common::HardwareInputSet *getHardwareInputSet();
#endif
};