mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 17:10:36 +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;
|
||||
gamerunning = true;
|
||||
initAll();
|
||||
if(showstartmenu) pushScreen(showStartMenu);
|
||||
uploadAll(MOBPAR_ACTUAL);
|
||||
return 0;
|
||||
}
|
||||
|
4
init.cpp
4
init.cpp
@ -161,6 +161,10 @@
|
||||
#define CAP_SHMUP 1
|
||||
#endif
|
||||
|
||||
#ifndef CAP_SHMUP_GOOD
|
||||
#define CAP_SHMUP (!ISMOBWEB)
|
||||
#endif
|
||||
|
||||
#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/"
|
||||
#undef XEXTRALICENSE
|
||||
|
@ -736,11 +736,11 @@ void showStartMenu() {
|
||||
dialog::addInfo(XLAT("use your Orbs in tough situations"));
|
||||
#endif
|
||||
|
||||
#if CAP_SHMUP
|
||||
#if CAP_SHMUP_GOOD
|
||||
dialog::addBreak(100);
|
||||
dialog::addBigItem(XLAT("shoot'em up mode"), 's');
|
||||
dialog::addInfo(XLAT("continuous spacetime"));
|
||||
#if HAVE_ACHIEVEMENTS
|
||||
#ifdef HAVE_ACHIEVEMENTS
|
||||
dialog::addInfo(XLAT("(most achievements are not available)"));
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user