aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorJody Northup2009-07-13 19:24:41 +0000
committerJody Northup2009-07-13 19:24:41 +0000
commit79e03a92a5782797dd5beacef3a63ed3dbdee68d (patch)
tree6e183354b3901fbe3ebb37f83c26843fba7c042a /engines
parent7d1badc5d53c4540cfa82f361f92a151a0f2c078 (diff)
downloadscummvm-rg350-79e03a92a5782797dd5beacef3a63ed3dbdee68d.tar.gz
scummvm-rg350-79e03a92a5782797dd5beacef3a63ed3dbdee68d.tar.bz2
scummvm-rg350-79e03a92a5782797dd5beacef3a63ed3dbdee68d.zip
Removed an unneeded debug console output from initGraphics
svn-id: r42450
Diffstat (limited to 'engines')
-rw-r--r--engines/engine.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/engine.cpp b/engines/engine.cpp
index 399f188962..eb46add82f 100644
--- a/engines/engine.cpp
+++ b/engines/engine.cpp
@@ -135,7 +135,6 @@ void initGraphics(int width, int height, bool defaultTo1xScaler, const Graphics:
g_system->initSize(width, height, format);
else {
Graphics::PixelFormat Format = g_system->getSupportedFormats().front();
- debug("%d,%X,%X,%X",Format.bytesPerPixel << 3, Format.rBits(), Format.gBits(), Format.bBits());
g_system->initSize(width, height, &Format);
}
#else