diff options
author | Strangerke | 2013-01-04 23:53:54 +0100 |
---|---|---|
committer | Strangerke | 2013-01-04 23:53:54 +0100 |
commit | e3494642498ec5067d7beef7cc7610873404ddb3 (patch) | |
tree | 9e2ff7104f905893f7d18a0037d2bcf44e8170dc | |
parent | ccef9fb3ea700663c19870cfe53660fd05320085 (diff) | |
download | scummvm-rg350-e3494642498ec5067d7beef7cc7610873404ddb3.tar.gz scummvm-rg350-e3494642498ec5067d7beef7cc7610873404ddb3.tar.bz2 scummvm-rg350-e3494642498ec5067d7beef7cc7610873404ddb3.zip |
HOPKINS: Fix regression introduced in fbd2c0e9182cf6a3ff90cf83b47347dfdd4de564
-rw-r--r-- | engines/hopkins/graphics.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/hopkins/graphics.cpp b/engines/hopkins/graphics.cpp index f955b91514..734e16ccaa 100644 --- a/engines/hopkins/graphics.cpp +++ b/engines/hopkins/graphics.cpp @@ -392,8 +392,9 @@ void GraphicsManager::A_PCX320(byte *surface, const Common::String &file, byte * surface[i++] = v12; --v10; } while (v10); + --i; } else { - surface[i++] = v9; + surface[i] = v9; } } |