1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-04 11:37:55 +00:00

gp:: used 'char' which failed on Android where 'char' is unsigned. Fixed. Also improved Xprintf

This commit is contained in:
Zeno Rogue
2018-05-27 01:07:44 +02:00
parent b28c82b26b
commit b294ec288d
4 changed files with 34 additions and 33 deletions

View File

@@ -116,12 +116,12 @@ int main(int argc, char **argv) {
int mx = 0; int my = 0; bool _clicked = false;
inv::on = true;
firstland = laMinefield;
activateSafety(laWhirlwind);
// firstland = laMinefield;
// activateSafety(laWhirlwind);
items[itGreenStone] = 100;
items[itDiamond] = 50;
for(int i=1; i<10; i++) kills[i] = 5;
// items[itDiamond] = 50;
// for(int i=1; i<10; i++) kills[i] = 5;
while(true) {