diff options
author | Jonathan Gray | 2004-01-01 08:55:26 +0000 |
---|---|---|
committer | Jonathan Gray | 2004-01-01 08:55:26 +0000 |
commit | 9b4f73b8ef9c8d89dd5b0d8da2639a1156dbaf47 (patch) | |
tree | 66528c4c7879286a46636c8befc8a51e5751950d | |
parent | 262514958457e1dd36fba016bcfb597b4b5116ae (diff) | |
download | scummvm-rg350-9b4f73b8ef9c8d89dd5b0d8da2639a1156dbaf47.tar.gz scummvm-rg350-9b4f73b8ef9c8d89dd5b0d8da2639a1156dbaf47.tar.bz2 scummvm-rg350-9b4f73b8ef9c8d89dd5b0d8da2639a1156dbaf47.zip |
compilation fix
svn-id: r12066
-rw-r--r-- | sword1/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sword1/control.cpp b/sword1/control.cpp index fdbb548fca..e4f7a28797 100644 --- a/sword1/control.cpp +++ b/sword1/control.cpp @@ -417,7 +417,7 @@ void SwordControl::setupVolumePanel(void) { renderText(_lStrings[STR_SPEECH], 320, 39 + 40, TEXT_CENTER); renderText(_lStrings[STR_FX], 438, 39 + 40, TEXT_LEFT_ALIGN); - renderText((uint8*)"NOT YET IMPLEMENTED", 320, 240, TEXT_CENTER); + renderText((const uint8*)"NOT YET IMPLEMENTED", 320, 240, TEXT_CENTER); createButtons(_volumeButtons, 1); renderText(_lStrings[STR_DONE], _volumeButtons[0].x - 10, _volumeButtons[0].y, TEXT_RIGHT_ALIGN); |