mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
'cancel texture' actually cancels now
This commit is contained in:
parent
5df5bb66f1
commit
e26f3f77b1
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user