From 3b9da089e540503101efbf0115e8369c33f47fd6 Mon Sep 17 00:00:00 2001 From: yexo Date: Mon, 22 Feb 2010 20:18:59 +0000 Subject: (svn r19212) -Fix: base graphics set with an empty filename in the obg file caused segfaults --- src/gfxinit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gfxinit.cpp') diff --git a/src/gfxinit.cpp b/src/gfxinit.cpp index 188b6c87b..f2678ae09 100644 --- a/src/gfxinit.cpp +++ b/src/gfxinit.cpp @@ -205,7 +205,7 @@ void GfxLoadSprites() bool GraphicsSet::FillSetDetails(IniFile *ini, const char *path) { - bool ret = this->BaseSet::FillSetDetails(ini, path); + bool ret = this->BaseSet::FillSetDetails(ini, path, false); if (ret) { IniGroup *metadata = ini->GetGroup("metadata"); IniItem *item; -- cgit v1.2.3-54-g00ecf