1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-02 10:48:04 +00:00

more fixes to Emscripten CLI

This commit is contained in:
Zeno Rogue
2018-02-12 13:12:08 +01:00
parent 15dcbc188a
commit bb5ac04875
4 changed files with 10 additions and 11 deletions

View File

@@ -40,10 +40,10 @@ void moreStack() {
}
#endif
hookset<bool(int argc, char** argv)> *hooks_main;
hookset<bool(int argc, const char** argv)> *hooks_main;
#ifndef NOMAIN
int main(int argc, char **argv) {
int main(int argc, const char **argv) {
#if ISWEB
emscripten_get_commandline(argc, argv);
#endif