1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

Fix get paint_bounds

The console command returned the wrong variable
This commit is contained in:
jensj12
2016-07-25 19:52:32 +02:00
parent d7119d9b3b
commit e70f7d9a38

View File

@@ -675,7 +675,7 @@ static int cc_get(const utf8 **argv, int argc)
console_printf("window_limit %d", gConfigGeneral.window_limit);
}
else if (strcmp(argv[0], "paint_bounds") == 0) {
console_printf("paint_bounds %d", gShowSupportSegmentHeights);
console_printf("paint_bounds %d", gPaintBoundingBoxes);
}
else {
console_writeline_warning("Invalid variable.");