[Scummvm-cvs-logs] scummvm master -> da1c4089158d56d3ed30c1aca39ab6f825075ad6

sev- sev at scummvm.org
Wed May 11 13:34:48 CEST 2016


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:
da1c408915 SCUMM HE: Fix another int32/int inconsistency preventing Amiga from compiling


Commit: da1c4089158d56d3ed30c1aca39ab6f825075ad6
    https://github.com/scummvm/scummvm/commit/da1c4089158d56d3ed30c1aca39ab6f825075ad6
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-05-11T13:34:42+02:00

Commit Message:
SCUMM HE: Fix another int32/int inconsistency preventing Amiga from compiling

Changed paths:
    engines/scumm/he/moonbase/moonbase_fow.cpp



diff --git a/engines/scumm/he/moonbase/moonbase_fow.cpp b/engines/scumm/he/moonbase/moonbase_fow.cpp
index 892ba29..8be83a5 100644
--- a/engines/scumm/he/moonbase/moonbase_fow.cpp
+++ b/engines/scumm/he/moonbase/moonbase_fow.cpp
@@ -322,7 +322,7 @@ void Moonbase::setFOWInfo(int fowInfoArray, int downDim, int acrossDim, int view
 }
 
 void Moonbase::renderFOWState(uint8 *destSurface, int dstPitch, int dstType, int dstw, int dsth, int x, int y, int srcw, int srch, int state, int flags) {
-	int spotx, spoty;
+	int32 spotx, spoty;
 
 	_vm->_wiz->getWizImageSpot(_fowImage, state, spotx, spoty);
 	Common::Rect r(_fowClipX1, _fowClipY1, _fowClipX2, _fowClipY2);






More information about the Scummvm-git-logs mailing list