[Scummvm-cvs-logs] scummvm master -> 44a3522e4a91efa47f44e851bb1989042799ccca

tramboi bertrand_augereau at yahoo.fr
Mon Nov 21 17:55:25 CET 2011


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:
44a3522e4a DREAMWEB: Removed STACK_CHECKs in saveload.cpp


Commit: 44a3522e4a91efa47f44e851bb1989042799ccca
    https://github.com/scummvm/scummvm/commit/44a3522e4a91efa47f44e851bb1989042799ccca
Author: Bertrand Augereau (bertrand_augereau at yahoo.fr)
Date: 2011-11-21T08:54:51-08:00

Commit Message:
DREAMWEB: Removed STACK_CHECKs in saveload.cpp

Changed paths:
    engines/dreamweb/saveload.cpp



diff --git a/engines/dreamweb/saveload.cpp b/engines/dreamweb/saveload.cpp
index 398d71e..6b54da9 100644
--- a/engines/dreamweb/saveload.cpp
+++ b/engines/dreamweb/saveload.cpp
@@ -29,7 +29,6 @@
 namespace DreamGen {
 
 void DreamGenContext::loadgame() {
-	STACK_CHECK;
 	if (data.byte(kCommandtype) != 246) {
 		data.byte(kCommandtype) = 246;
 		al = 41;
@@ -47,7 +46,6 @@ void DreamGenContext::loadgame() {
 // if -1, open menu to ask for slot to load
 // if >= 0, directly load from that slot
 void DreamGenContext::doload() {
-	STACK_CHECK;
 	int savegameId = (int16)ax;
 
 	data.byte(kLoadingorsave) = 1;
@@ -180,7 +178,6 @@ void DreamGenContext::doload() {
 
 
 void DreamGenContext::savegame() {
-	STACK_CHECK;
 	if (data.byte(kMandead) == 2) {
 		blank();
 		return;






More information about the Scummvm-git-logs mailing list