diff options
author | Daniel Friesel <derf@finalrewind.org> | 2012-03-16 22:35:16 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2012-03-16 22:35:16 +0100 |
commit | 58ac2e2a6fa2be219c380c377a2c53044f076a3e (patch) | |
tree | 7fb6ee799011d9cdd599714eb3dca675a2d9cdd9 /lib/App/VRR | |
parent | 84158d0c64dae0503f3d820bbfd5b3b144e030a8 (diff) | |
parent | b5322a4db6b23d01b18c3d897c43990446767a90 (diff) |
Merge branch 'master' of aneurysm:var/git_root/vrr-fakedisplay
Diffstat (limited to 'lib/App/VRR')
-rw-r--r-- | lib/App/VRR/Fakedisplay.pm.PL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/App/VRR/Fakedisplay.pm.PL b/lib/App/VRR/Fakedisplay.pm.PL index 3ad0fe5..59d0561 100644 --- a/lib/App/VRR/Fakedisplay.pm.PL +++ b/lib/App/VRR/Fakedisplay.pm.PL @@ -20,7 +20,7 @@ sub write_out { say $out_fh "'${char}' => {"; say $out_fh 'matrix => ['; - if ($char eq '1') { + if ( $char eq '1' ) { $off_x--; } @@ -49,7 +49,7 @@ sub write_out { $char_w = 5; } - if ($char ~~ [qw[0 1 2 3 4 5 6 7 8 9]]) { + if ( $char ~~ [qw[0 1 2 3 4 5 6 7 8 9]] ) { $char_w = 6; } |