BACKENDS: Use Common::U32String for OSystem::setWindowCaption

This commit is contained in:
Cameron Cawley 2020-11-01 21:15:34 +00:00 committed by Thierry Crozat
parent ce39fcbf8b
commit 01b4432825
23 changed files with 34 additions and 92 deletions

View file

@ -555,9 +555,7 @@ void OSystem_Android::quit() {
pthread_join(_timer_thread, 0);
}
void OSystem_Android::setWindowCaption(const char *caption) {
ENTER("%s", caption);
void OSystem_Android::setWindowCaption(const Common::U32String &caption) {
JNI::setWindowCaption(caption);
}