SCI: Fix warning
This commit is contained in:
parent
192c3df6a1
commit
569c06b510
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ static kLanguage charToLanguage(const char c) {
|
|||
|
||||
Common::String SciEngine::getSciLanguageString(const Common::String &str, kLanguage requestedLanguage, kLanguage *secondaryLanguage, uint16 *languageSplitter) const {
|
||||
kLanguage foundLanguage = K_LANG_NONE;
|
||||
const byte *textPtr = (byte *)str.c_str();
|
||||
const byte *textPtr = (const byte *)str.c_str();
|
||||
byte curChar = 0;
|
||||
byte curChar2 = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue