mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-12 10:20:32 +00:00
more mobile fixes
This commit is contained in:
parent
da269e31a7
commit
2e4fe5baba
@ -166,6 +166,7 @@ Java_com_roguetemple_hyperroid_HyperRogue_initGame(MOBPAR_FORMAL) {
|
|||||||
if(gamerunning) return 1;
|
if(gamerunning) return 1;
|
||||||
gamerunning = true;
|
gamerunning = true;
|
||||||
initAll();
|
initAll();
|
||||||
|
if(showstartmenu) pushScreen(showStartMenu);
|
||||||
uploadAll(MOBPAR_ACTUAL);
|
uploadAll(MOBPAR_ACTUAL);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
4
init.cpp
4
init.cpp
@ -161,6 +161,10 @@
|
|||||||
#define CAP_SHMUP 1
|
#define CAP_SHMUP 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef CAP_SHMUP_GOOD
|
||||||
|
#define CAP_SHMUP (!ISMOBWEB)
|
||||||
|
#endif
|
||||||
|
|
||||||
#if ISMOBILE
|
#if ISMOBILE
|
||||||
#define EXTRALICENSE "\n\nHyperRogue soundtrack by Shawn Parrotte (http://www.shawnparrotte.com), under the Creative Commons BY-SA 3.0 license, http://creativecommons.org/licenses/by-sa/3.0/"
|
#define EXTRALICENSE "\n\nHyperRogue soundtrack by Shawn Parrotte (http://www.shawnparrotte.com), under the Creative Commons BY-SA 3.0 license, http://creativecommons.org/licenses/by-sa/3.0/"
|
||||||
#undef XEXTRALICENSE
|
#undef XEXTRALICENSE
|
||||||
|
@ -736,11 +736,11 @@ void showStartMenu() {
|
|||||||
dialog::addInfo(XLAT("use your Orbs in tough situations"));
|
dialog::addInfo(XLAT("use your Orbs in tough situations"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CAP_SHMUP
|
#if CAP_SHMUP_GOOD
|
||||||
dialog::addBreak(100);
|
dialog::addBreak(100);
|
||||||
dialog::addBigItem(XLAT("shoot'em up mode"), 's');
|
dialog::addBigItem(XLAT("shoot'em up mode"), 's');
|
||||||
dialog::addInfo(XLAT("continuous spacetime"));
|
dialog::addInfo(XLAT("continuous spacetime"));
|
||||||
#if HAVE_ACHIEVEMENTS
|
#ifdef HAVE_ACHIEVEMENTS
|
||||||
dialog::addInfo(XLAT("(most achievements are not available)"));
|
dialog::addInfo(XLAT("(most achievements are not available)"));
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user