Use EM_ASM_PTR when the return value is a pointer

- closes https://github.com/libsdl-org/SDL/issues/8241
This commit is contained in:
Jaswant Panchumarti
2023-09-19 10:45:50 -04:00
committed by Ryan C. Gordon
parent a4541a255e
commit 953b55dd6d
2 changed files with 2 additions and 2 deletions

View File

@@ -243,7 +243,7 @@ static SDL_AssertState SDLCALL SDL_PromptAssertion(const SDL_AssertData *data, v
for (;;) {
SDL_bool okay = SDL_TRUE;
/* *INDENT-OFF* */ /* clang-format off */
char *buf = (char *) EM_ASM_INT({
char *buf = (char *) EM_ASM_PTR({
var str =
UTF8ToString($0) + '\n\n' +
'Abort/Retry/Ignore/AlwaysIgnore? [ariA] :';