From 23df239469fae758e311f3f7212d9b3133f9a8df Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Mon, 3 Aug 2020 03:26:00 +1000 Subject: [PATCH] GPU/HW: Debug build compile fix --- src/core/gpu_hw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/gpu_hw.cpp b/src/core/gpu_hw.cpp index 29c96e1e0..51d617382 100644 --- a/src/core/gpu_hw.cpp +++ b/src/core/gpu_hw.cpp @@ -597,7 +597,7 @@ void GPU_HW::LoadVertices() const auto [min_y, max_y] = MinMax(start_y, end_y); if ((max_x - min_x) >= MAX_PRIMITIVE_WIDTH || (max_y - min_y) >= MAX_PRIMITIVE_HEIGHT) { - Log_DebugPrintf("Culling too-large line: %d,%d - %d,%d", start_x, start_y, x, y); + Log_DebugPrintf("Culling too-large line: %d,%d - %d,%d", start_x, start_y, end_x, end_y); } else {