[Scummvm-cvs-logs] scummvm master -> 351be2d19d9389e88a75546ba5786cf2b58dc910

tramboi bertrand_augereau at yahoo.fr
Fri Nov 18 17:51:52 CET 2011


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

Summary:
42c9e24e69 DREAMWEB: Remove now unnecessary push/pop sequence in 'scrollmonitor'
351be2d19d DREAMWEB: Comment in 'showcurrentfile' about the file not being displayed in the frame in te upper right corner when you


Commit: 42c9e24e691ee35c424d3f02c3208a45ef20235c
    https://github.com/scummvm/scummvm/commit/42c9e24e691ee35c424d3f02c3208a45ef20235c
Author: Bertrand Augereau (bertrand_augereau at yahoo.fr)
Date: 2011-11-18T08:47:55-08:00

Commit Message:
DREAMWEB: Remove now unnecessary push/pop sequence in 'scrollmonitor'

Changed paths:
    engines/dreamweb/monitor.cpp



diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp
index 41df8c4..7ba625b 100644
--- a/engines/dreamweb/monitor.cpp
+++ b/engines/dreamweb/monitor.cpp
@@ -188,17 +188,11 @@ void DreamGenContext::hangoncurs() {
 }
 
 void DreamGenContext::scrollmonitor() {
-	push(bx); // The 3 push/pops are all needed for now
-	push(di);
-	push(si);
 	printlogo();
 	printundermon();
 	workToScreenCPP();
 	al = 25;
 	playchannel1();
-	si = pop();
-	di = pop();
-	bx = pop();
 }
 
 void DreamGenContext::showcurrentfile() {


Commit: 351be2d19d9389e88a75546ba5786cf2b58dc910
    https://github.com/scummvm/scummvm/commit/351be2d19d9389e88a75546ba5786cf2b58dc910
Author: Bertrand Augereau (bertrand_augereau at yahoo.fr)
Date: 2011-11-18T08:51:26-08:00

Commit Message:
DREAMWEB: Comment in 'showcurrentfile' about the file not being displayed in the frame in te upper right corner when you do a LIST

Changed paths:
    engines/dreamweb/monitor.cpp



diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp
index 7ba625b..11e19b4 100644
--- a/engines/dreamweb/monitor.cpp
+++ b/engines/dreamweb/monitor.cpp
@@ -196,7 +196,7 @@ void DreamGenContext::scrollmonitor() {
 }
 
 void DreamGenContext::showcurrentfile() {
-	uint16 x = 178;
+	uint16 x = 178; // TODO: Looks like this hardcoded constant in the asm doesn't match the frame
 	const char *currentFile = (const char *)cs.ptr(kCurrentfile+1, 0);
 	while (*currentFile) {
 		char c = *currentFile++;






More information about the Scummvm-git-logs mailing list