1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 20:43:04 +01:00

Fix Z coordinate in guest debug tab

This commit is contained in:
Jonathan van Tuijl
2020-08-11 03:37:34 +02:00
parent dcdc782361
commit 4117965a4a

View File

@@ -2215,7 +2215,7 @@ void window_guest_debug_paint(rct_window* w, rct_drawpixelinfo* dpi)
}
screenCoords.y += LIST_ROW_HEIGHT;
{
int32_t args[] = { peep->x, peep->y, peep->x };
int32_t args[] = { peep->x, peep->y, peep->z };
gfx_draw_string_left(dpi, STR_PEEP_DEBUG_POSITION, args, 0, screenCoords);
}
screenCoords.y += LIST_ROW_HEIGHT;