diff options
author | Max Horn | 2011-05-03 14:34:59 +0200 |
---|---|---|
committer | Max Horn | 2011-05-03 14:34:59 +0200 |
commit | 73396954c90cc113284417d9d27b20290b3b80bb (patch) | |
tree | 60e09884ed660d51b42a93aecc5556eb5d83dd33 /backends/graphics | |
parent | 2fa63ca01586c4e5fda8eb12dca444d47a2375f1 (diff) | |
download | scummvm-rg350-73396954c90cc113284417d9d27b20290b3b80bb.tar.gz scummvm-rg350-73396954c90cc113284417d9d27b20290b3b80bb.tar.bz2 scummvm-rg350-73396954c90cc113284417d9d27b20290b3b80bb.zip |
GPH: Change fprintf to debug
Diffstat (limited to 'backends/graphics')
-rw-r--r-- | backends/graphics/gph/gph-graphics.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/graphics/gph/gph-graphics.cpp b/backends/graphics/gph/gph-graphics.cpp index 6d23777903..b407bf1faf 100644 --- a/backends/graphics/gph/gph-graphics.cpp +++ b/backends/graphics/gph/gph-graphics.cpp @@ -445,14 +445,14 @@ bool GPHGraphicsManager::loadGFXMode() { _videoMode.aspectRatioCorrection = false; } - fprintf(stdout, "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); - fprintf(stdout, "GraphicsMode set to HALF\n"); + debug("GraphicsMode set to HALF"); } else { setGraphicsMode(GFX_NORMAL); - fprintf(stdout, "GraphicsMode set to NORMAL\n"); + debug("GraphicsMode set to NORMAL"); } if ((_videoMode.mode == GFX_HALF) && !_overlayVisible) { |