diff options
author | Travis Howell | 2004-10-11 01:31:34 +0000 |
---|---|---|
committer | Travis Howell | 2004-10-11 01:31:34 +0000 |
commit | 17d3e301805b1caee8cfb800108cda990f221013 (patch) | |
tree | ba1b24e599d0ddb0789fc25e7134565deaad8c0f /scumm | |
parent | bbf1de48d520c70e2b534aa595238b1eac160b1c (diff) | |
download | scummvm-rg350-17d3e301805b1caee8cfb800108cda990f221013.tar.gz scummvm-rg350-17d3e301805b1caee8cfb800108cda990f221013.tar.bz2 scummvm-rg350-17d3e301805b1caee8cfb800108cda990f221013.zip |
X/Y order changed again in HE 72+.
svn-id: r15512
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v72he.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index f7808b89e6..59a0686005 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -2095,8 +2095,8 @@ void ScummEngine_v72he::o72_deleteFile() { void ScummEngine_v72he::o72_getPixel() { byte area; - int x = pop(); int y = pop(); + int x = pop(); byte subOp = fetchScriptByte(); VirtScreen *vs = findVirtScreen(y); |