mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-03-20 20:09:43 +00:00
restartGame, wrong mode, and resetModes now use constants instead of magic char names
This commit is contained in:
4
quit.cpp
4
quit.cpp
@@ -179,7 +179,7 @@ hint hints[] = {
|
||||
},
|
||||
[]() {
|
||||
#if CAP_INV
|
||||
restartGame('i');
|
||||
restartGame(rg::inv);
|
||||
#endif
|
||||
}
|
||||
},
|
||||
@@ -273,7 +273,7 @@ hint hints[] = {
|
||||
resetModes();
|
||||
specialland = laHalloween;
|
||||
targetgeometry = gSphere;
|
||||
restartGame('g');
|
||||
restartGame(rg::geometry);
|
||||
vid.alpha = 999;
|
||||
vid.scale = 998;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user