diff options
Diffstat (limited to 'scumm/script_v100he.cpp')
| -rw-r--r-- | scumm/script_v100he.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp index 0aba798cfe..907a596c8e 100644 --- a/scumm/script_v100he.cpp +++ b/scumm/script_v100he.cpp @@ -457,7 +457,8 @@ void ScummEngine_v100he::o100_actorOps() { a->_needRedraw = true; break; case 59: - a->_layer = pop(); + // HE games use reverse order of layering, so we adjust + a->_layer = -pop(); a->_needRedraw = true; break; case 63: |
