Skip to content

Commit

Permalink
vpm: Treat None displays as 2x20alpa. Fixes #149.
Browse files Browse the repository at this point in the history
  • Loading branch information
freezy committed Nov 17, 2018
1 parent 5a342e9 commit 4e92a2c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions LibDmd/DmdDevice/DmdDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -564,11 +564,10 @@ public void RenderAlphaNumeric(NumericalLayout layout, ushort[] segData, ushort[
}
//Logger.Info("Alphanumeric: {0}", layout);
switch (layout) {
case NumericalLayout.None:
break;
case NumericalLayout.__2x16Alpha:
_vpmGray2Source.NextFrame(Width, Height, AlphaNumeric.Render2x16Alpha(segData));
break;
case NumericalLayout.None:
case NumericalLayout.__2x20Alpha:
_vpmGray2Source.NextFrame(Width, Height, AlphaNumeric.Render2x20Alpha(segData));
break;
Expand Down

0 comments on commit 4e92a2c

Please sign in to comment.