diff options
author | D G Turner | 2012-02-08 17:18:35 +0000 |
---|---|---|
committer | D G Turner | 2012-02-08 17:18:35 +0000 |
commit | 0d6b4df0141fb85d56d8083bdae81b06660e5947 (patch) | |
tree | 7886d4e283e95d719deecb069e8bd06662c0e1c3 /engines/dreamweb | |
parent | b9a93f354b5f783be8e4c3aaf673b7105b8809a7 (diff) | |
download | scummvm-rg350-0d6b4df0141fb85d56d8083bdae81b06660e5947.tar.gz scummvm-rg350-0d6b4df0141fb85d56d8083bdae81b06660e5947.tar.bz2 scummvm-rg350-0d6b4df0141fb85d56d8083bdae81b06660e5947.zip |
DREAMWEB: Remove uneeded duplicate function "printUnderMon".
Diffstat (limited to 'engines/dreamweb')
-rw-r--r-- | engines/dreamweb/dreamweb.h | 1 | ||||
-rw-r--r-- | engines/dreamweb/monitor.cpp | 4 | ||||
-rw-r--r-- | engines/dreamweb/vgagrafx.cpp | 4 |
3 files changed, 2 insertions, 7 deletions
diff --git a/engines/dreamweb/dreamweb.h b/engines/dreamweb/dreamweb.h index b9623f54fa..8eeb006844 100644 --- a/engines/dreamweb/dreamweb.h +++ b/engines/dreamweb/dreamweb.h @@ -1124,7 +1124,6 @@ public: void multiPut(const uint8 *src, uint16 x, uint16 y, uint8 width, uint8 height); void multiDump(uint16 x, uint16 y, uint8 width, uint8 height); void workToScreen(); - void printUnderMon(); void frameOutV(uint8 *dst, const uint8 *src, uint16 pitch, uint16 width, uint16 height, int16 x, int16 y); void frameOutNm(uint8 *dst, const uint8 *src, uint16 pitch, uint16 width, uint16 height, uint16 x, uint16 y); void frameOutBh(uint8 *dst, const uint8 *src, uint16 pitch, uint16 width, uint16 height, uint16 x, uint16 y); diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp index ab6dd9efcb..d2f6b376ae 100644 --- a/engines/dreamweb/monitor.cpp +++ b/engines/dreamweb/monitor.cpp @@ -175,7 +175,7 @@ void DreamWebEngine::monitorLogo() { _oldLogoNum = _logoNum; //fadeDownMon(); // FIXME: Commented out in ASM printLogo(); - printUnderMon(); + printUnderMonitor(); workToScreen(); printLogo(); //fadeUpMon(); // FIXME: Commented out in ASM @@ -286,7 +286,7 @@ void DreamWebEngine::delCurs() { void DreamWebEngine::scrollMonitor() { printLogo(); - printUnderMon(); + printUnderMonitor(); workToScreen(); playChannel1(25); } diff --git a/engines/dreamweb/vgagrafx.cpp b/engines/dreamweb/vgagrafx.cpp index 1e93c0f2fe..26b5e60b9d 100644 --- a/engines/dreamweb/vgagrafx.cpp +++ b/engines/dreamweb/vgagrafx.cpp @@ -71,10 +71,6 @@ void DreamWebEngine::workToScreen() { blit(workspace(), 320, 0, 0, 320, 200); } -void DreamWebEngine::printUnderMon() { - printUnderMonitor(); -} - void DreamWebEngine::frameOutNm(uint8 *dst, const uint8 *src, uint16 pitch, uint16 width, uint16 height, uint16 x, uint16 y) { dst += pitch * y + x; |