emscripten: Fix crash in SDL_SetWindowTitle().
This patch came from emscripten-ports, thanks! Fixes Bugzilla #5133.
parent
1a291ab118
commit
daf360e040
|
@ -366,8 +366,8 @@ Emscripten_SetWindowFullscreen(_THIS, SDL_Window * window, SDL_VideoDisplay * di
|
||||||
static void
|
static void
|
||||||
Emscripten_SetWindowTitle(_THIS, SDL_Window * window) {
|
Emscripten_SetWindowTitle(_THIS, SDL_Window * window) {
|
||||||
EM_ASM_INT({
|
EM_ASM_INT({
|
||||||
if (typeof Module['setWindowTitle'] !== 'undefined') {
|
if (typeof setWindowTitle !== 'undefined') {
|
||||||
Module['setWindowTitle'](UTF8ToString($0));
|
setWindowTitle(UTF8ToString($0));
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}, window->title);
|
}, window->title);
|
||||||
|
|
Loading…
Reference in New Issue