diff options
author | Robert Špalek | 2010-04-19 16:38:41 +0000 |
---|---|---|
committer | Robert Špalek | 2010-04-19 16:38:41 +0000 |
commit | 196f033e93450001ae30c9902c5bb35cec9de8d3 (patch) | |
tree | 7c3e8e9f7a5b72e1c3f17b3898984781315a1220 /engines | |
parent | 88af84514b96ac3cb77ae00b996414757bce5e18 (diff) | |
download | scummvm-rg350-196f033e93450001ae30c9902c5bb35cec9de8d3.tar.gz scummvm-rg350-196f033e93450001ae30c9902c5bb35cec9de8d3.tar.bz2 scummvm-rg350-196f033e93450001ae30c9902c5bb35cec9de8d3.zip |
Fix static initialization
svn-id: r48722
Diffstat (limited to 'engines')
-rw-r--r-- | engines/draci/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/draci/game.cpp b/engines/draci/game.cpp index 8e7bc1a708..0e4b3386ec 100644 --- a/engines/draci/game.cpp +++ b/engines/draci/game.cpp @@ -41,7 +41,7 @@ namespace Draci { -static const Common::String dialoguePath("ROZH"); +static const char *dialoguePath = "ROZH"; static double real_to_double(byte real[6]); |