diff options
author | Eugene Sandulenko | 2019-06-08 21:25:25 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:16:46 +0200 |
commit | 1cb7c9b14217ffbc93852f2e56fc16a30d81aa1f (patch) | |
tree | ed25b62c0f11ebe544435913979bbc72f7350ad9 | |
parent | 8f8d6782b8806ace11a9b3a0ce9d4d578f717e5f (diff) | |
download | scummvm-rg350-1cb7c9b14217ffbc93852f2e56fc16a30d81aa1f.tar.gz scummvm-rg350-1cb7c9b14217ffbc93852f2e56fc16a30d81aa1f.tar.bz2 scummvm-rg350-1cb7c9b14217ffbc93852f2e56fc16a30d81aa1f.zip |
HDB: Fix crash with -d5
-rw-r--r-- | engines/hdb/map-loader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/map-loader.cpp b/engines/hdb/map-loader.cpp index 06bbe2184b..d67bb2a18c 100644 --- a/engines/hdb/map-loader.cpp +++ b/engines/hdb/map-loader.cpp @@ -78,7 +78,7 @@ bool Map::load(Common::SeekableReadStream *stream) { } if (gDebugLevel >= 5) { debug(5, "Background:"); - Common::hexdump((const byte *)_foreground, 512); + Common::hexdump((const byte *)_background, 512); } |