From 350395a6c2a7e5551421caf7c971f02084c50891 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Tue, 30 Oct 2018 15:56:34 +0100 Subject: 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. --- src/misc_gui.cpp | 1 + 1 file changed, 1 insertion(+) 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 } -- cgit v1.2.3-54-g00ecf