diff options
author | Eugene Sandulenko | 2011-10-19 05:03:46 -0700 |
---|---|---|
committer | Eugene Sandulenko | 2011-10-19 05:03:46 -0700 |
commit | 19134ecf7e543600fda7e9855ee4b3aa6822548c (patch) | |
tree | ae2f3917075cceb3ce74c34013bd48459f384c9d /backends/platform/bada/form.h | |
parent | 84bc5651271f70e470099a19ab197ef038ef4a3b (diff) | |
parent | ed07b99b22c2cf092f207dc15b26801c502534ac (diff) | |
download | scummvm-rg350-19134ecf7e543600fda7e9855ee4b3aa6822548c.tar.gz scummvm-rg350-19134ecf7e543600fda7e9855ee4b3aa6822548c.tar.bz2 scummvm-rg350-19134ecf7e543600fda7e9855ee4b3aa6822548c.zip |
Merge pull request #106 from chrisws/branch-1-4-c
BADA: Misc changes merged from appstore release
Diffstat (limited to 'backends/platform/bada/form.h')
-rw-r--r-- | backends/platform/bada/form.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/platform/bada/form.h b/backends/platform/bada/form.h index 09ce941a7b..3340e2216b 100644 --- a/backends/platform/bada/form.h +++ b/backends/platform/bada/form.h @@ -50,7 +50,7 @@ public: result Construct(); bool pollEvent(Common::Event &event); - bool isClosing() { return _state == ClosingState; } + bool isClosing() { return _state == kClosingState; } void pushKey(Common::KeyCode keycode); void exitSystem(); @@ -100,9 +100,9 @@ private: Osp::Base::Runtime::Thread *_gameThread; Osp::Base::Runtime::Mutex *_eventQueueLock; Common::Queue<Common::Event> _eventQueue; - enum {InitState, ActiveState, ClosingState, DoneState, ErrorState} _state; - enum {LeftButton, RightButtonOnce, RightButton, MoveOnly} _buttonState; - enum {ControlMouse, EscapeKey, GameMenu, ShowKeypad, SetVolume} _shortcut; + enum { kInitState, kActiveState, kClosingState, kDoneState, kErrorState } _state; + enum { kLeftButton, kRightButtonOnce, kRightButton, kMoveOnly } _buttonState; + enum { kControlMouse, kEscapeKey, kGameMenu, kShowKeypad, kSetVolume } _shortcut; }; #endif |