aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/psp/osys_psp.cpp
diff options
context:
space:
mode:
authorColin Snover2017-10-29 13:15:38 -0500
committerEugene Sandulenko2018-08-18 13:49:15 +0200
commitc240af799fa61f647073cfa5b94d76b26880c143 (patch)
tree1ac2d1247fcf43e7e4160ce1d0a0416b6ab8445e /backends/platform/psp/osys_psp.cpp
parent7016c86d5348586fd798650f46804665f207dcd0 (diff)
downloadscummvm-rg350-c240af799fa61f647073cfa5b94d76b26880c143.tar.gz
scummvm-rg350-c240af799fa61f647073cfa5b94d76b26880c143.tar.bz2
scummvm-rg350-c240af799fa61f647073cfa5b94d76b26880c143.zip
PSP: Fix compilation failures when debug printing is enabled
Diffstat (limited to 'backends/platform/psp/osys_psp.cpp')
-rw-r--r--backends/platform/psp/osys_psp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/psp/osys_psp.cpp b/backends/platform/psp/osys_psp.cpp
index 314580fd37..5d9e3aba61 100644
--- a/backends/platform/psp/osys_psp.cpp
+++ b/backends/platform/psp/osys_psp.cpp
@@ -314,7 +314,7 @@ void OSystem_PSP::setMouseCursor(const void *buf, uint w, uint h, int hotspotX,
_displayManager.waitUntilRenderFinished();
_pendingUpdate = false;
- PSP_DEBUG_PRINT("pbuf[%p], w[%u], h[%u], hotspot:X[%d], Y[%d], keycolor[%d], scale[%d], pformat[%p]\n", buf, w, h, hotspotX, hotspotY, keycolor, cursorTargetScale, format);
+ PSP_DEBUG_PRINT("pbuf[%p], w[%u], h[%u], hotspot:X[%d], Y[%d], keycolor[%d], scale[%d], pformat[%p]\n", buf, w, h, hotspotX, hotspotY, keycolor, !dontScale, format);
if (format) {
PSP_DEBUG_PRINT("format: bpp[%d], rLoss[%d], gLoss[%d], bLoss[%d], aLoss[%d], rShift[%d], gShift[%d], bShift[%d], aShift[%d]\n", format->bytesPerPixel, format->rLoss, format->gLoss, format->bLoss, format->aLoss, format->rShift, format->gShift, format->bShift, format->aShift);
}