Skip to content

Commit f8ec9c8

Browse files
committed
fix bladein/bladout mixup for color displays
1 parent 60fee45 commit f8ec9c8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

display/layer_controller.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,12 +590,12 @@ class StandardColorDisplayController : public SaberBase, public Looper, public C
590590
Stop();
591591
break;
592592
case EFFECT_BLADEIN:
593-
if (scr_.Play(&SCR_bladeout)) break;
593+
if (scr_.Play(&SCR_bladein)) break;
594594
if (scr_.Play(&SCR_font)) break;
595595
ShowDefault();
596596
break;
597597
case EFFECT_BLADEOUT:
598-
if (scr_.Play(&SCR_bladein)) break;
598+
if (scr_.Play(&SCR_bladeout)) break;
599599
/* fall through */
600600
case EFFECT_NEWFONT:
601601
if (scr_.Play(&SCR_font)) break;

0 commit comments

Comments
 (0)