diff options
author | Niels Martin Hansen <nielsm@indvikleren.dk> | 2018-10-30 15:56:34 +0100 |
---|---|---|
committer | Niels Martin Hansen <nielsm@indvikleren.dk> | 2018-10-30 16:33:07 +0100 |
commit | 350395a6c2a7e5551421caf7c971f02084c50891 (patch) | |
tree | d58cc3bfec08505cc6adccda9eede5afcfb4ec06 | |
parent | 50efaa2372cafe430f79ecc3361cb2450715417c (diff) | |
download | openttd-350395a6c2a7e5551421caf7c971f02084c50891.tar.xz |
Fix: Missing m8 data in console when using Query tool
When map array 8 was added, the Query tool wasn't updated to also
print the value there to the console, in debug builds.
-rw-r--r-- | src/misc_gui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp index cb2e2d318..df0045977 100644 --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -132,6 +132,7 @@ public: DEBUG(misc, LANDINFOD_LEVEL, "m5 = %#x", _m[tile].m5); DEBUG(misc, LANDINFOD_LEVEL, "m6 = %#x", _me[tile].m6); DEBUG(misc, LANDINFOD_LEVEL, "m7 = %#x", _me[tile].m7); + DEBUG(misc, LANDINFOD_LEVEL, "m8 = %#x", _me[tile].m8); #undef LANDINFOD_LEVEL } |