aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/game.cpp
diff options
context:
space:
mode:
authorStrangerke2012-06-17 19:39:58 +0200
committerStrangerke2012-06-17 19:39:58 +0200
commita46b06a587cc0b5e5767b55ba0d56264a8078f0c (patch)
tree3b563375a88503de21660d0f123e8e5df895d4a3 /engines/tony/game.cpp
parent31c0210f22bb4cc839abb9fa59539fd97d3a74f6 (diff)
downloadscummvm-rg350-a46b06a587cc0b5e5767b55ba0d56264a8078f0c.tar.gz
scummvm-rg350-a46b06a587cc0b5e5767b55ba0d56264a8078f0c.tar.bz2
scummvm-rg350-a46b06a587cc0b5e5767b55ba0d56264a8078f0c.zip
TONY: Move functions comment to doxygen format
Diffstat (limited to 'engines/tony/game.cpp')
-rw-r--r--engines/tony/game.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/engines/tony/game.cpp b/engines/tony/game.cpp
index 7b2834a8fa..493887cfa9 100644
--- a/engines/tony/game.cpp
+++ b/engines/tony/game.cpp
@@ -316,8 +316,6 @@ void RMOptionSlide::addToList(RMGfxTargetBuffer &bigBuf) {
bigBuf.addPrim(new RMGfxPrimitive(this));
}
-
-
/****************************************************************************\
* RMOptionScreen Methods
\****************************************************************************/
@@ -379,7 +377,6 @@ RMOptionScreen::RMOptionScreen(void) {
_nLastState = MENUGAME;
}
-
RMOptionScreen::~RMOptionScreen(void) {
closeState();
}
@@ -567,7 +564,6 @@ void RMOptionScreen::refreshThumbnails(void) {
}
}
-
void RMOptionScreen::initState(CORO_PARAM) {
CORO_BEGIN_CONTEXT;
RMResRaw *raw;
@@ -1097,7 +1093,6 @@ void RMOptionScreen::doFrame(CORO_PARAM, RMInput *input) {
_ctx->bRefresh |= _buttonSave_ArrowLeft->doFrame(_ctx->mousePos, _ctx->bLeftClick, _ctx->bRightClick);
if (_statePos < 90)
_ctx->bRefresh |= _buttonSave_ArrowRight->doFrame(_ctx->mousePos, _ctx->bLeftClick, _ctx->bRightClick);
-
}
}
@@ -1195,7 +1190,7 @@ void RMOptionScreen::doFrame(CORO_PARAM, RMInput *input) {
if (_buttonSave_States[_ctx->i]->isActive()) {
// There by saving or loading!!!
if (_nState == MENULOAD && _curThumb[_ctx->i] != NULL) {
- // Caricamento
+ // Loading
CORO_INVOKE_1(_vm->loadState, _statePos + _ctx->i);
close();
} else if (_nState == MENUSAVE && (_statePos != 0 || _ctx->i != 0)) {
@@ -1468,7 +1463,6 @@ bool RMOptionScreen::loadThumbnailFromSaveState(int nState, byte *lpDestBuf, RMS
return true;
}
-
/****************************************************************************\
* RMPointer Methods
\****************************************************************************/