Permalink
Browse files

tests

  • Loading branch information...
1 parent be56a19 commit 03795f5c1b864db69ca22225b369f21b13c0bc86 @rkoeppl rkoeppl committed May 5, 2016
Showing with 3 additions and 3 deletions.
  1. +3 −3 modules/printengine.pl
View
@@ -217,14 +217,14 @@
#builtin framebuffer access
my $fb = Graphics::Framebuffer->new( FB_DEVICE=>$display_device, SPLASH=>0 );
- #$fb->clear_screen('OFF');
+$fb->clear_screen('OFF');
$fb->blit_write(
$fb->load_image(
{ 'center' => $fb->{'CENTER_XY'},
- 'file' => '$pics[0]', # Usually needs full path
+ 'file' => '$dir/$pics[0]', # Usually needs full path
}
)
);
-#$fb->clear_screen('ON');
+$fb->clear_screen('ON');

0 comments on commit 03795f5

Please sign in to comment.