diff options
author | Kostas Nakos | 2007-04-28 17:35:18 +0000 |
---|---|---|
committer | Kostas Nakos | 2007-04-28 17:35:18 +0000 |
commit | 36466497a8ca7c78a8b1fc7ef7150f633d75f05a (patch) | |
tree | 8b1a43711dddb126f408d4cc21d8f16ecb711bd1 /backends | |
parent | 4670ff73881c17b63f117c8442451380371dbbf4 (diff) | |
download | scummvm-rg350-36466497a8ca7c78a8b1fc7ef7150f633d75f05a.tar.gz scummvm-rg350-36466497a8ca7c78a8b1fc7ef7150f633d75f05a.tar.bz2 scummvm-rg350-36466497a8ca7c78a8b1fc7ef7150f633d75f05a.zip |
bump action mapping version
svn-id: r26659
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/wince/CEActionsPocket.h | 49 |
1 files changed, 23 insertions, 26 deletions
diff --git a/backends/platform/wince/CEActionsPocket.h b/backends/platform/wince/CEActionsPocket.h index f3d8f482cb..d20829f3f6 100644 --- a/backends/platform/wince/CEActionsPocket.h +++ b/backends/platform/wince/CEActionsPocket.h @@ -1,5 +1,5 @@ /* ScummVM - Scumm Interpreter - * Copyright (C) 2001-2006 The ScummVM project + * Copyright (C) 2001-2007 The ScummVM project * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -26,37 +26,34 @@ #include "common/stdafx.h" #include "common/scummsys.h" #include "common/system.h" - - #include "wince-sdl.h" #include "gui/Key.h" - #include "gui/Actions.h" -#define POCKET_ACTION_VERSION 4 +#define POCKET_ACTION_VERSION 5 enum pocketActionType { - POCKET_ACTION_PAUSE = 0, - POCKET_ACTION_SAVE, - POCKET_ACTION_QUIT, - POCKET_ACTION_SKIP, - POCKET_ACTION_HIDE, - POCKET_ACTION_KEYBOARD, - POCKET_ACTION_SOUND, - POCKET_ACTION_RIGHTCLICK, - POCKET_ACTION_CURSOR, - POCKET_ACTION_FREELOOK, - POCKET_ACTION_ZOOM_UP, - POCKET_ACTION_ZOOM_DOWN, - POCKET_ACTION_FT_CHEAT, - POCKET_ACTION_BINDKEYS, - POCKET_ACTION_UP, - POCKET_ACTION_DOWN, - POCKET_ACTION_LEFT, - POCKET_ACTION_RIGHT, - POCKET_ACTION_LEFTCLICK, - - POCKET_ACTION_LAST + POCKET_ACTION_PAUSE = 0, + POCKET_ACTION_SAVE, + POCKET_ACTION_QUIT, + POCKET_ACTION_SKIP, + POCKET_ACTION_HIDE, + POCKET_ACTION_KEYBOARD, + POCKET_ACTION_SOUND, + POCKET_ACTION_RIGHTCLICK, + POCKET_ACTION_CURSOR, + POCKET_ACTION_FREELOOK, + POCKET_ACTION_ZOOM_UP, + POCKET_ACTION_ZOOM_DOWN, + POCKET_ACTION_FT_CHEAT, + POCKET_ACTION_BINDKEYS, + POCKET_ACTION_UP, + POCKET_ACTION_DOWN, + POCKET_ACTION_LEFT, + POCKET_ACTION_RIGHT, + POCKET_ACTION_LEFTCLICK, + + POCKET_ACTION_LAST }; class CEActionsPocket : public GUI::Actions { |