TRECISION: Change the signature of characterTalk

This commit is contained in:
Strangerke 2021-06-29 22:12:52 +01:00
parent 3d1e4e57c0
commit 11ceeeebf7
2 changed files with 2 additions and 2 deletions

View file

@ -111,7 +111,7 @@ void TextManager::formattingOneString() {
_subStringAgain = false;
}
void TextManager::characterTalk(const char *s) {
void TextManager::characterTalk(Common::String s) {
_vm->_flagSomeoneSpeaks = true;
_vm->_flagCharacterSpeak = true;
_vm->_flagSkipTalk = false;

View file

@ -63,7 +63,7 @@ class TextManager {
Common::Point positionString(uint16 x, uint16 y, const char *string, bool characterFl);
void formattingSuperString();
void formattingOneString();
void characterTalk(const char *s);
void characterTalk(Common::String s);
void characterContinueTalk();
void characterMute();
void someoneContinueTalk();