fixed the # and = pattern keys not working

This commit is contained in:
Zeno Rogue 2019-10-12 14:40:42 +02:00
parent 4fc3c73855
commit 6a94eef6aa
1 changed files with 1 additions and 1 deletions

View File

@ -1786,7 +1786,7 @@ EX namespace patterns {
};
}
else if((uni >= 'a' && uni <= 'z') || (uni >= 'A' && uni <= 'Z')) {
else if((uni >= 'a' && uni <= 'z') || (uni >= 'A' && uni <= 'Z') || among(uni, '#', '=')) {
if(instant)
stop_game();
whichCanvas = uni;