1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

'cancel texture' actually cancels now

This commit is contained in:
Zeno Rogue 2018-04-06 12:20:52 +02:00
parent 5df5bb66f1
commit e26f3f77b1

View File

@ -1171,8 +1171,11 @@ void showMenu() {
else if(uni == 't' && config.tstate == tsActive)
config.tstate = tsOff;
else if(uni == 'T' && config.tstate == tsAdjusting)
else if(uni == 'T' && config.tstate == tsAdjusting) {
config.tstate = tsOff;
if(config.tstate == tsActive)
config.tstate = tsOff;
}
else if(uni == 'T' && config.tstate == tsActive)
config.tstate = tsAdjusting;