diff options
Diffstat (limited to 'lib/App/VRR')
-rw-r--r-- | lib/App/VRR/Fakedisplay.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/App/VRR/Fakedisplay.pm b/lib/App/VRR/Fakedisplay.pm index b380382..2546248 100644 --- a/lib/App/VRR/Fakedisplay.pm +++ b/lib/App/VRR/Fakedisplay.pm @@ -53,12 +53,13 @@ sub locate_char { when (q{:}) { $y = 30; $x = 0 } when (q{-}) { $y = 30; $x = 10 } when (q{.}) { $y = 30; $x = 20 } - when (q{,}) { $y = 30, $x = 30 } + when (q{,}) { $y = 30; $x = 30 } + when (q{/}) { $y = 30; $x = 40 } } given ($char) { when (/[WwMm]/) { $w = 8 } - when (/[BDErt ]/) { $w = 5 } + when (/[BDEFrt ]/) { $w = 5 } when (/[il1:]/) { $w = 4 } when (/[.,]/) { $w = 3 } } |