aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/tony.cpp
diff options
context:
space:
mode:
authorStrangerke2012-06-06 08:04:33 +0200
committerStrangerke2012-06-06 08:04:33 +0200
commitf1ac5d5acdbc0349850377619d8056be22871b42 (patch)
tree6076996dd7201af5f63447e382c2600e12eb183d /engines/tony/tony.cpp
parent334dc91e279d01b264ae7454f39faa557a250428 (diff)
downloadscummvm-rg350-f1ac5d5acdbc0349850377619d8056be22871b42.tar.gz
scummvm-rg350-f1ac5d5acdbc0349850377619d8056be22871b42.tar.bz2
scummvm-rg350-f1ac5d5acdbc0349850377619d8056be22871b42.zip
TONY: More renaming
Diffstat (limited to 'engines/tony/tony.cpp')
-rw-r--r--engines/tony/tony.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/tony/tony.cpp b/engines/tony/tony.cpp
index cc323eb5d2..ea378e0fc3 100644
--- a/engines/tony/tony.cpp
+++ b/engines/tony/tony.cpp
@@ -477,7 +477,7 @@ void TonyEngine::closeVoiceDatabase() {
}
void TonyEngine::grabThumbnail(void) {
- _window.GrabThumbnail(_curThumbnail);
+ _window.grabThumbnail(_curThumbnail);
}
void TonyEngine::optionScreen(void) {
@@ -533,13 +533,13 @@ void TonyEngine::playProcess(CORO_PARAM, const void *param) {
// Handle drawing the frame
if (!_vm->_bPaused) {
if (!_vm->_theEngine._bWiping)
- _vm->_window.GetNewFrame(_vm->_theEngine, NULL);
+ _vm->_window.getNewFrame(_vm->_theEngine, NULL);
else
- _vm->_window.GetNewFrame(_vm->_theEngine, &_vm->_theEngine._rcWipeEllipse);
+ _vm->_window.getNewFrame(_vm->_theEngine, &_vm->_theEngine._rcWipeEllipse);
}
// Paint the frame onto the screen
- _vm->_window.Repaint();
+ _vm->_window.repaint();
// Signal the ScummVM debugger
_vm->_debugger->onFrame();
@@ -570,12 +570,12 @@ void TonyEngine::close(void) {
CoroScheduler.closeEvent(_hEndOfFrame);
_theBoxes.Close();
_theEngine.close();
- _window.Close();
+ _window.close();
delete[] _curThumbnail;
}
void TonyEngine::switchFullscreen(bool bFull) {
- _window.SwitchFullscreen(bFull);
+ _window.switchFullscreen(bFull);
_theEngine.switchFullscreen(bFull);
}
@@ -617,7 +617,7 @@ Common::Error TonyEngine::saveGameState(int slot, const Common::String &desc) {
return Common::kUnknownError;
RMSnapshot s;
- s.GrabScreenshot(*GLOBALS.GfxEngine, 4, _curThumbnail);
+ s.grabScreenshot(*GLOBALS.GfxEngine, 4, _curThumbnail);
GLOBALS.GfxEngine->saveState(getSaveStateFileName(slot), (byte *)_curThumbnail, desc);
return Common::kNoError;