From 0cf5f7f3657f9924cb642f3fa95dee75723f0d4b Mon Sep 17 00:00:00 2001 From: Daniel Wolf Date: Thu, 8 Dec 2016 12:12:48 +0100 Subject: [PATCH] Improved "H" rule --- src/animation/animationRules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/animation/animationRules.cpp b/src/animation/animationRules.cpp index 77e4ea3..385f3a9 100644 --- a/src/animation/animationRules.cpp +++ b/src/animation/animationRules.cpp @@ -149,7 +149,7 @@ Timeline getShapeSets(Phone phone, centiseconds duration, centiseconds case Phone::M: return single({A}); case Phone::N: return single({B, C, F, H}); case Phone::NG: return single({B, C, E, F}); - case Phone::L: return duration < 20_cs ? single({B, C, E, F, H}) : single({H}); + case Phone::L: return duration < 20_cs ? single({B, E, F, H}) : single({H}); case Phone::R: return single({B, E, F}); case Phone::Y: return single({B, C, F}); case Phone::W: return single({F});