1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-23 13:43:19 +00:00

added momory_saving_mode to commandline

This commit is contained in:
Zeno Rogue 2018-09-23 23:53:55 +02:00
parent 866dd3a05e
commit e8361c440d

View File

@ -1507,6 +1507,12 @@ int read_config_args() {
else if(argis("-stretch")) {
PHASEFROM(2); shift(); vid.stretch = argf();
}
else if(argis("-msm")) {
PHASEFROM(2); memory_saving_mode = true;
}
else if(argis("-msmoff")) {
PHASEFROM(2); memory_saving_mode = false;
}
TOGGLE('o', vid.usingGL, switchGL())
TOGGLE('f', vid.full, switchFullscreen())
else return 1;