diff options
author | Joseph-Eugene Winzer | 2018-03-26 01:13:25 +0200 |
---|---|---|
committer | Thierry Crozat | 2018-04-15 18:28:39 +0100 |
commit | a4ac8895daf33f2ee6955f1334b521b772d7dcca (patch) | |
tree | 163d56d3d61ed306decb48b4a4cf908935f3bf03 /engines/supernova | |
parent | 2a170fb929269aa6982fcbd30d5a2053c51b42cd (diff) | |
download | scummvm-rg350-a4ac8895daf33f2ee6955f1334b521b772d7dcca.tar.gz scummvm-rg350-a4ac8895daf33f2ee6955f1334b521b772d7dcca.tar.bz2 scummvm-rg350-a4ac8895daf33f2ee6955f1334b521b772d7dcca.zip |
SUPERNOVA: Removes renderImageSection() from SupernovaEngine
This function is never called by itself. It is a helper function for
renderImage().
Diffstat (limited to 'engines/supernova')
-rw-r--r-- | engines/supernova/supernova.cpp | 4 | ||||
-rw-r--r-- | engines/supernova/supernova.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/engines/supernova/supernova.cpp b/engines/supernova/supernova.cpp index 99bf77c653..035238b3ac 100644 --- a/engines/supernova/supernova.cpp +++ b/engines/supernova/supernova.cpp @@ -246,10 +246,6 @@ void SupernovaEngine::playSound(MusicId index) { _sound->play(index); } -void SupernovaEngine::renderImageSection(int section) { - _screen->renderImageSection(section); -} - void SupernovaEngine::renderImage(int section) { _screen->renderImage(section); } diff --git a/engines/supernova/supernova.h b/engines/supernova/supernova.h index 8fe8765f7f..132e25deeb 100644 --- a/engines/supernova/supernova.h +++ b/engines/supernova/supernova.h @@ -96,7 +96,6 @@ public: void paletteFadeOut(); void paletteBrightness(); void renderImage(int section); - void renderImageSection(int section); bool setCurrentImage(int filenumber); void saveScreen(int x, int y, int width, int height); void saveScreen(const GuiElement &guiElement); |