diff options
author | whiterandrek | 2018-05-22 22:43:56 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | de6932f771cd9e530df52103799005dc4d3d6027 (patch) | |
tree | 93dcbdd65d33a8f48d34d93ff168788dde48abe5 /engines | |
parent | a8baeda59e7b4ddff74d8dbe9739db6b22294978 (diff) | |
download | scummvm-rg350-de6932f771cd9e530df52103799005dc4d3d6027.tar.gz scummvm-rg350-de6932f771cd9e530df52103799005dc4d3d6027.tar.bz2 scummvm-rg350-de6932f771cd9e530df52103799005dc4d3d6027.zip |
PINK: fix letter case
Diffstat (limited to 'engines')
-rw-r--r-- | engines/pink/objects/module.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/pink/objects/module.h b/engines/pink/objects/module.h index a0735bfac7..16bda6cbc3 100644 --- a/engines/pink/objects/module.h +++ b/engines/pink/objects/module.h @@ -50,9 +50,9 @@ public: void init(bool isLoadingSave, const Common::String &pageName); void changePage(const Common::String &pageName); - void OnLeftButtonDown(); - void OnMouseMove(); - void OnKeyboardButtonClick(); + void onLeftButtonDown(); + void onMouseMove(); + void onKeyboardButtonClick(); PinkEngine *getGame() const; InventoryMgr *getInventoryMgr(); |