[Scummvm-cvs-logs] SF.net SVN: scummvm:[39812] scummvm/trunk/gui/ThemeParser.cpp
fingolfin at users.sourceforge.net
fingolfin at users.sourceforge.net
Fri Apr 3 17:12:47 CEST 2009
Revision: 39812
http://scummvm.svn.sourceforge.net/scummvm/?rev=39812&view=rev
Author: fingolfin
Date: 2009-04-03 15:12:46 +0000 (Fri, 03 Apr 2009)
Log Message:
-----------
GUI: Commited fix for bug in ThemeParser::parserCallback_defaults (at least I think this is the correct fix, somebody should review this)
Modified Paths:
--------------
scummvm/trunk/gui/ThemeParser.cpp
Modified: scummvm/trunk/gui/ThemeParser.cpp
===================================================================
--- scummvm/trunk/gui/ThemeParser.cpp 2009-04-03 15:08:26 UTC (rev 39811)
+++ scummvm/trunk/gui/ThemeParser.cpp 2009-04-03 15:12:46 UTC (rev 39812)
@@ -136,7 +136,7 @@
step = _defaultStepGlobal;
} else if (parentNode->name == "drawdata") {
if (_defaultStepLocal == 0)
- _defaultStepLocal = new Graphics::DrawStep(*_defaultStepLocal);
+ _defaultStepLocal = new Graphics::DrawStep(*_defaultStepGlobal);
step = _defaultStepLocal;
} else {
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