isle-portable/ISLE/emscripten/messagebox.cpp
2026-01-08 02:10:10 +01:00

15 lines
296 B
C++

#include "messagebox.h"
#include <emscripten.h>
bool Emscripten_ShowSimpleMessageBox(
MORTAR_MessageBoxFlags flags,
const char* title,
const char* message,
MORTAR_Window* window
)
{
MAIN_THREAD_EM_ASM({alert(UTF8ToString($0) + "\n\n" + UTF8ToString($1))}, title, message);
return true;
}