diff options
author | Eugene Sandulenko | 2016-05-11 13:34:42 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-05-11 13:34:42 +0200 |
commit | da1c4089158d56d3ed30c1aca39ab6f825075ad6 (patch) | |
tree | 91c5d24a7445ca6ddb7e15941b610212e2c140ef /engines/scumm/he | |
parent | 68192a0a3af5a6e2d750c540d46d4b3d55520055 (diff) | |
download | scummvm-rg350-da1c4089158d56d3ed30c1aca39ab6f825075ad6.tar.gz scummvm-rg350-da1c4089158d56d3ed30c1aca39ab6f825075ad6.tar.bz2 scummvm-rg350-da1c4089158d56d3ed30c1aca39ab6f825075ad6.zip |
SCUMM HE: Fix another int32/int inconsistency preventing Amiga from compiling
Diffstat (limited to 'engines/scumm/he')
-rw-r--r-- | engines/scumm/he/moonbase/moonbase_fow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/he/moonbase/moonbase_fow.cpp b/engines/scumm/he/moonbase/moonbase_fow.cpp index 892ba29e0c..8be83a57f0 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); |