From 7080034ddb2bc5ac687ba40b3a8798ccbfe8a494 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Sun, 18 Feb 2018 12:43:04 +0700 Subject: [PATCH] Fix DebugMsg format string for gDPTextureRectangle. --- src/gDP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gDP.cpp b/src/gDP.cpp index d9055be2..e20a74a2 100644 --- a/src/gDP.cpp +++ b/src/gDP.cpp @@ -841,7 +841,7 @@ void gDPTextureRectangle(f32 ulx, f32 uly, f32 lrx, f32 lry, s32 tile, s16 s, s1 DebugMsg( DEBUG_NORMAL, "gDPTextureRectangleFlip( %f, %f, %f, %f, %i, %f, %f, %f, %f);\n", ulx, uly, lrx, lry, tile, s/32.0f, t/32.0f, dsdx, dtdy ); else - DebugMsg( DEBUG_NORMAL, "gDPTextureRectangle( %f, %f, %f, %f, %i, %i, %f, %f, %f, %f );\n", + DebugMsg( DEBUG_NORMAL, "gDPTextureRectangle( %f, %f, %f, %f, %i, %f, %f, %f, %f );\n", ulx, uly, lrx, lry, tile, s/32.0f, t/32.0f, dsdx, dtdy); gSP.tri_num += 2; }