From 6a94eef6aa0b7af37976cbcca36cdaaca0ba68f8 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 12 Oct 2019 14:40:42 +0200 Subject: [PATCH] fixed the # and = pattern keys not working --- pattern2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pattern2.cpp b/pattern2.cpp index 3ee0ad27..1d9ef8b3 100644 --- a/pattern2.cpp +++ b/pattern2.cpp @@ -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;