aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMax Horn2011-05-03 23:04:58 +0200
committerMax Horn2011-05-03 23:04:58 +0200
commitd683a228a3c3216ac262d6d026ea350c80b88520 (patch)
tree2b8a3f32e4c2d9b3345e99d56d6aea0de898dee6 /backends
parent5efb1e559692469ed27a2e386c54d2b380b481f4 (diff)
downloadscummvm-rg350-d683a228a3c3216ac262d6d026ea350c80b88520.tar.gz
scummvm-rg350-d683a228a3c3216ac262d6d026ea350c80b88520.tar.bz2
scummvm-rg350-d683a228a3c3216ac262d6d026ea350c80b88520.zip
MOTO: Change fprintf calls to debug calls
Diffstat (limited to 'backends')
-rw-r--r--backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp b/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp
index ebfd4714d8..7d1809f4ac 100644
--- a/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp
+++ b/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp
@@ -144,14 +144,14 @@ void LinuxmotoSdlGraphicsManager::initSize(uint w, uint h) {
}
bool LinuxmotoSdlGraphicsManager::loadGFXMode() {
- printf("Game ScreenMode = %d*%d\n",_videoMode.screenWidth, _videoMode.screenHeight);
+ debug("Game ScreenMode = %d*%d",_videoMode.screenWidth, _videoMode.screenHeight);
if (_videoMode.screenWidth > 320 || _videoMode.screenHeight > 240) {
_videoMode.aspectRatioCorrection = false;
setGraphicsMode(GFX_HALF);
- printf("GraphicsMode set to HALF\n");
+ debug("GraphicsMode set to HALF");
} else {
setGraphicsMode(GFX_NORMAL);
- printf("GraphicsMode set to NORMAL\n");
+ debug("GraphicsMode set to NORMAL");
}
if (_videoMode.mode == GFX_HALF && !_overlayVisible) {
_videoMode.overlayWidth = 320;