[Scummvm-cvs-logs] SF.net SVN: scummvm: [31732] scummvm/trunk/engines/kyra/screen.cpp

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Sat Apr 26 12:28:23 CEST 2008


Revision: 31732
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31732&view=rev
Author:   lordhoto
Date:     2008-04-26 03:28:23 -0700 (Sat, 26 Apr 2008)

Log Message:
-----------
Fixed unitialized variable in Screen.

Modified Paths:
--------------
    scummvm/trunk/engines/kyra/screen.cpp

Modified: scummvm/trunk/engines/kyra/screen.cpp
===================================================================
--- scummvm/trunk/engines/kyra/screen.cpp	2008-04-26 10:21:53 UTC (rev 31731)
+++ scummvm/trunk/engines/kyra/screen.cpp	2008-04-26 10:28:23 UTC (rev 31732)
@@ -34,7 +34,8 @@
 namespace Kyra {
 
 Screen::Screen(KyraEngine *vm, OSystem *system)
-: _system(system), _vm(vm), _sjisInvisibleColor(0) {
+	: _system(system), _vm(vm), _sjisInvisibleColor(0) {
+	_debugEnabled = false;
 }
 
 Screen::~Screen() {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list