diff options
author | Strangerke | 2013-01-04 22:41:11 +0100 |
---|---|---|
committer | Strangerke | 2013-01-04 22:41:11 +0100 |
commit | ccef9fb3ea700663c19870cfe53660fd05320085 (patch) | |
tree | b5789c61df6f30a71b2d09e1aac28a5f86d02a8b /engines/hopkins | |
parent | e43ddb09e98205fe74f78dce71d96acf96550c74 (diff) | |
download | scummvm-rg350-ccef9fb3ea700663c19870cfe53660fd05320085.tar.gz scummvm-rg350-ccef9fb3ea700663c19870cfe53660fd05320085.tar.bz2 scummvm-rg350-ccef9fb3ea700663c19870cfe53660fd05320085.zip |
HOPKINS: Remove setModeVesa()
Diffstat (limited to 'engines/hopkins')
-rw-r--r-- | engines/hopkins/graphics.cpp | 4 | ||||
-rw-r--r-- | engines/hopkins/graphics.h | 1 | ||||
-rw-r--r-- | engines/hopkins/hopkins.cpp | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/engines/hopkins/graphics.cpp b/engines/hopkins/graphics.cpp index 33b8bedaea..f955b91514 100644 --- a/engines/hopkins/graphics.cpp +++ b/engines/hopkins/graphics.cpp @@ -2018,8 +2018,4 @@ void GraphicsManager::drawVerticalLine(byte *surface, int xp, int yp, int height } } -void GraphicsManager::setModeVesa() { - setGraphicalMode(640, 480); -} - } // End of namespace Hopkins diff --git a/engines/hopkins/graphics.h b/engines/hopkins/graphics.h index 4ab447b5ba..3a8d35bd63 100644 --- a/engines/hopkins/graphics.h +++ b/engines/hopkins/graphics.h @@ -173,7 +173,6 @@ public: void Reduc_Ecran(const byte *srcSruface, byte *destSurface, int xp, int yp, int width, int height, int zoom); void drawHorizontalLine(byte *surface, int xp, int yp, unsigned int width, byte col); void drawVerticalLine(byte *surface, int xp, int yp, int height, byte col); - void setModeVesa(); }; } // End of namespace Hopkins diff --git a/engines/hopkins/hopkins.cpp b/engines/hopkins/hopkins.cpp index 7686c7a733..8f50044b96 100644 --- a/engines/hopkins/hopkins.cpp +++ b/engines/hopkins/hopkins.cpp @@ -3511,7 +3511,6 @@ bool HopkinsEngine::runWin95full() { _globals.PERSO_TYPE = 0; _globals.iRegul = 0; _graphicsManager._lineNbr = SCREEN_WIDTH; - _graphicsManager.setModeVesa(); if (_globals._exitId == -1) error("FIN BASE SOUS MARINE"); break; |