SUPERNOVA: Removes renderImageSection() from SupernovaEngine

This function is never called by itself. It is a helper function for
renderImage().
This commit is contained in:
Joseph-Eugene Winzer 2018-03-26 01:13:25 +02:00 committed by Thierry Crozat
parent 2a170fb929
commit a4ac8895da
2 changed files with 0 additions and 5 deletions

View File

@ -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);
}

View File

@ -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);