diff options
| author | Travis Howell | 2005-04-01 06:30:46 +0000 |
|---|---|---|
| committer | Travis Howell | 2005-04-01 06:30:46 +0000 |
| commit | cdd21c361b1c194a6c0b7f6ef480463d02fcc87c (patch) | |
| tree | 1c5717b09fd4ace8b9664729dab1e9108015b362 /scumm/script_v72he.cpp | |
| parent | 65596240d70869900df61ece1812d080c5acd22f (diff) | |
| download | scummvm-rg350-cdd21c361b1c194a6c0b7f6ef480463d02fcc87c.tar.gz scummvm-rg350-cdd21c361b1c194a6c0b7f6ef480463d02fcc87c.tar.bz2 scummvm-rg350-cdd21c361b1c194a6c0b7f6ef480463d02fcc87c.zip | |
Remove resource type argument in wizImage functions, it is always rtImage.
Rename sprite flags/functions
Remove unused sprite flags
Switch sprite flags back to hex. for easier comparison
svn-id: r17319
Diffstat (limited to 'scumm/script_v72he.cpp')
| -rw-r--r-- | scumm/script_v72he.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index 0b2f390e0a..ef0312f186 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -783,7 +783,7 @@ void ScummEngine_v72he::o72_captureWizImage() { grab.right = pop() + 1; grab.top = pop(); grab.left = pop(); - captureWizImage(rtImage, pop(), grab, false, true); + captureWizImage(pop(), grab, false, true); } void ScummEngine_v72he::o72_getTimer() { @@ -887,7 +887,7 @@ void ScummEngine_v72he::o72_printWizImage() { wi.x1 = wi.y1 = 0; wi.state = 0; wi.flags = kWIFPrint; - drawWizImage(rtImage, &wi); + drawWizImage(&wi); } void ScummEngine_v72he::o72_getArrayDimSize() { |
