[Scummvm-cvs-logs] scummvm master -> 0d6b4df0141fb85d56d8083bdae81b06660e5947

digitall digitall at scummvm.org
Wed Feb 8 18:21:35 CET 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
0d6b4df014 DREAMWEB: Remove uneeded duplicate function "printUnderMon".


Commit: 0d6b4df0141fb85d56d8083bdae81b06660e5947
    https://github.com/scummvm/scummvm/commit/0d6b4df0141fb85d56d8083bdae81b06660e5947
Author: D G Turner (digitall at scummvm.org)
Date: 2012-02-08T09:18:35-08:00

Commit Message:
DREAMWEB: Remove uneeded duplicate function "printUnderMon".

Changed paths:
    engines/dreamweb/dreamweb.h
    engines/dreamweb/monitor.cpp
    engines/dreamweb/vgagrafx.cpp



diff --git a/engines/dreamweb/dreamweb.h b/engines/dreamweb/dreamweb.h
index b9623f5..8eeb006 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 ab6dd9e..d2f6b37 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 1e93c0f..26b5e60 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;
 






More information about the Scummvm-git-logs mailing list