diff options
author | Paweł Kołodziejski | 2002-08-31 18:46:00 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2002-08-31 18:46:00 +0000 |
commit | bb71d9e67736d4b6c08b4f8e6d780cf8a94113b7 (patch) | |
tree | 62dbd66b32002b4709216764c7adf7b741828501 /common | |
parent | 23c8db678012d0df128569d74fdf75ad9ed54f88 (diff) | |
download | scummvm-rg350-bb71d9e67736d4b6c08b4f8e6d780cf8a94113b7.tar.gz scummvm-rg350-bb71d9e67736d4b6c08b4f8e6d780cf8a94113b7.tar.bz2 scummvm-rg350-bb71d9e67736d4b6c08b4f8e6d780cf8a94113b7.zip |
fixes
svn-id: r4887
Diffstat (limited to 'common')
-rw-r--r-- | common/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/main.cpp b/common/main.cpp index 9a43a58212..1d1adf9dfb 100644 --- a/common/main.cpp +++ b/common/main.cpp @@ -132,7 +132,7 @@ int main(int argc, char *argv[]) { OSystem::Property prop; - prop.caption = detector.getGameName(); + prop.caption = (char *)detector.getGameName(); system->property(OSystem::PROP_SET_WINDOW_CAPTION, &prop); } |