mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-17 18:54:48 +00:00
hyperweb:: default arguments possible
This commit is contained in:
parent
37dd9cb208
commit
4665e7ca14
@ -178,6 +178,8 @@ void emscripten_get_commandline() {
|
||||
#else
|
||||
char *str = (char*)EM_ASM_INT({
|
||||
var jsString = document.location.href;
|
||||
if (typeof(default_arg) != 'undefined' && jsString.indexOf('?') == -1)
|
||||
jsString = default_arg;
|
||||
var lengthBytes = lengthBytesUTF8(jsString)+1;
|
||||
var stringOnWasmHeap = _malloc(lengthBytes);
|
||||
stringToUTF8(jsString, stringOnWasmHeap, lengthBytes+1);
|
||||
|
Loading…
Reference in New Issue
Block a user