From 7ef17ba73e26436e30689d14fda8153aadb3c347 Mon Sep 17 00:00:00 2001 From: Robert Špalek Date: Mon, 28 Sep 2009 03:06:43 +0000 Subject: get rid of static Common::String's svn-id: r44432 --- engines/draci/font.cpp | 4 ++-- engines/draci/font.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/draci') diff --git a/engines/draci/font.cpp b/engines/draci/font.cpp index ddba64ba43..7b58149ac1 100644 --- a/engines/draci/font.cpp +++ b/engines/draci/font.cpp @@ -30,8 +30,8 @@ namespace Draci { -const Common::String kFontSmall("Small.fon"); -const Common::String kFontBig("Big.fon"); +const char *kFontSmall = "Small.fon"; +const char *kFontBig = "Big.fon"; Font::Font(const Common::String &filename) { diff --git a/engines/draci/font.h b/engines/draci/font.h index de2fe5d3da..931801ccd2 100644 --- a/engines/draci/font.h +++ b/engines/draci/font.h @@ -30,8 +30,8 @@ namespace Draci { -extern const Common::String kFontSmall; -extern const Common::String kFontBig; +extern const char *kFontSmall; +extern const char *kFontBig; /** * Default font colours. They all seem to remain constant except for the -- cgit v1.2.3