diff options
author | Eugene Sandulenko | 2019-11-06 19:34:05 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-13 22:07:08 +0100 |
commit | d4bdfa185347de969f67bc2608e126437e335ad9 (patch) | |
tree | 7489eee34fb16afc71ae6a4c47a16b9b31614736 /engines/griffon | |
parent | 7d594e0fb62c406491a81969754acb374284151b (diff) | |
download | scummvm-rg350-d4bdfa185347de969f67bc2608e126437e335ad9.tar.gz scummvm-rg350-d4bdfa185347de969f67bc2608e126437e335ad9.tar.bz2 scummvm-rg350-d4bdfa185347de969f67bc2608e126437e335ad9.zip |
GRIFFON: Remove obsolete FIXMEs
Diffstat (limited to 'engines/griffon')
-rw-r--r-- | engines/griffon/dialogs.cpp | 2 | ||||
-rw-r--r-- | engines/griffon/draw.cpp | 2 | ||||
-rw-r--r-- | engines/griffon/sound.cpp | 6 |
3 files changed, 1 insertions, 9 deletions
diff --git a/engines/griffon/dialogs.cpp b/engines/griffon/dialogs.cpp index 44b7140fe7..870de81c41 100644 --- a/engines/griffon/dialogs.cpp +++ b/engines/griffon/dialogs.cpp @@ -599,8 +599,6 @@ void GriffonEngine::saveLoadNew() { curRow = 1; } else if (curCol == 3) { // RETURN - // reset keys to avoid returning - // keys[SDLK_RETURN] = keys[SDLK_SPACE] = 0; // FIXME return; } else if (curCol == 4) { // QUIT - non existent :) diff --git a/engines/griffon/draw.cpp b/engines/griffon/draw.cpp index ed587831dc..399b9f832f 100644 --- a/engines/griffon/draw.cpp +++ b/engines/griffon/draw.cpp @@ -261,7 +261,7 @@ void GriffonEngine::drawHud() { if (_selEnemyOn == false) { rcDest = Common::Rect(320, 240); _videoBuffer2->fillRect(rcDest, 0); - _videoBuffer2->setAlpha((int)(_player.itemselshade * 4)); // FIXME + _videoBuffer2->setAlpha((int)(_player.itemselshade * 4)); _videoBuffer2->blit(*_videoBuffer); int sy = 202; diff --git a/engines/griffon/sound.cpp b/engines/griffon/sound.cpp index a8c6c0482d..8d3af94312 100644 --- a/engines/griffon/sound.cpp +++ b/engines/griffon/sound.cpp @@ -118,12 +118,6 @@ DataChunk *cacheSound(const char *name) { } void GriffonEngine::setupAudio() { - // FIXME - //Mix_OpenAudio(22050, MIX_DEFAULT_FORMAT, 2, 1024); - - //atexit(Mix_Quit); - //atexit(Mix_CloseAudio); - const char *stri = "Loading..."; drawString(_videoBuffer, stri, 160 - 4 * strlen(stri), 116, 0); |