aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/gp2xwiz
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/gp2xwiz')
-rw-r--r--backends/platform/gp2xwiz/gp2xwiz-events.cpp2
-rw-r--r--backends/platform/gp2xwiz/gp2xwiz-sdl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/gp2xwiz/gp2xwiz-events.cpp b/backends/platform/gp2xwiz/gp2xwiz-events.cpp
index 2774efce1b..f5341a022e 100644
--- a/backends/platform/gp2xwiz/gp2xwiz-events.cpp
+++ b/backends/platform/gp2xwiz/gp2xwiz-events.cpp
@@ -494,6 +494,6 @@ bool OSystem_GP2XWIZ::pollEvent(Common::Event &event) {
return false;
}
-bool OSystem_GP2XWIZ::remapKey(SDL_Event &ev,Common::Event &event) {
+bool OSystem_GP2XWIZ::remapKey(const SDL_Event &ev,Common::Event &event) {
return false;
}
diff --git a/backends/platform/gp2xwiz/gp2xwiz-sdl.h b/backends/platform/gp2xwiz/gp2xwiz-sdl.h
index 1f67624d5c..ace11d0546 100644
--- a/backends/platform/gp2xwiz/gp2xwiz-sdl.h
+++ b/backends/platform/gp2xwiz/gp2xwiz-sdl.h
@@ -61,7 +61,7 @@ public:
void moveStick();
void fillMouseEvent(Common::Event&, int, int);
void warpMouse(int, int);
- bool remapKey(SDL_Event&, Common::Event&);
+ bool remapKey(const SDL_Event&, Common::Event&);
/* Platform Setup Stuff */
void addSysArchivesToSearchSet(Common::SearchSet &s, int priority);