aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2016-02-03 23:27:55 +0100
committerEugene Sandulenko2016-02-14 17:12:59 +0100
commit81fb44960fd48563e6205cae08c5c29d9e162396 (patch)
tree0a16e01703a4f128565392a73f3f37d442ae1d36 /engines
parented3372d8bf42e1300e4c875edc444c77c64864f3 (diff)
downloadscummvm-rg350-81fb44960fd48563e6205cae08c5c29d9e162396.tar.gz
scummvm-rg350-81fb44960fd48563e6205cae08c5c29d9e162396.tar.bz2
scummvm-rg350-81fb44960fd48563e6205cae08c5c29d9e162396.zip
WAGE: Rename function to CamelCase
Diffstat (limited to 'engines')
-rw-r--r--engines/wage/gui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp
index 200c8fff62..25624566f4 100644
--- a/engines/wage/gui.cpp
+++ b/engines/wage/gui.cpp
@@ -111,7 +111,7 @@ static const byte macCursorBeam[] = {
0, 0, 3, 3, 3, 0, 0, 3, 3, 3, 3,
};
-static void cursor_timer_handler(void *refCon) {
+static void cursorTimerHandler(void *refCon) {
Gui *gui = (Gui *)refCon;
int x = gui->_cursorX;
@@ -171,7 +171,7 @@ Gui::Gui(WageEngine *engine) {
loadFonts();
- g_system->getTimerManager()->installTimerProc(&cursor_timer_handler, 200000, this, "wageCursor");
+ g_system->getTimerManager()->installTimerProc(&cursorTimerHandler, 200000, this, "wageCursor");
_menu = new Menu(this);
}
@@ -179,7 +179,7 @@ Gui::Gui(WageEngine *engine) {
Gui::~Gui() {
_screen.free();
_console.free();
- g_system->getTimerManager()->removeTimerProc(&cursor_timer_handler);
+ g_system->getTimerManager()->removeTimerProc(&cursorTimerHandler);
delete _menu;
}
@@ -531,7 +531,7 @@ void Gui::drawInput() {
// undraw cursor
_cursorOff = true;
_cursorState = false;
- cursor_timer_handler(this);
+ cursorTimerHandler(this);
_cursorOff = false;
Common::Rect r(x, y, x + textW + 10, y + font->getFontHeight());