diff options
Diffstat (limited to 'plugins/dfxvideo')
-rw-r--r-- | plugins/dfxvideo/draw_fb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/dfxvideo/draw_fb.c b/plugins/dfxvideo/draw_fb.c index 3e241d7..64657bb 100644 --- a/plugins/dfxvideo/draw_fb.c +++ b/plugins/dfxvideo/draw_fb.c @@ -137,7 +137,7 @@ unsigned long ulInitDisplay(void) iShowFPS=1; initialize(); - if (pl_fbdev_init() != 0) + if (pl_fbdev_open() != 0) return 0; return 1; /* ok */ @@ -146,7 +146,7 @@ unsigned long ulInitDisplay(void) void CloseDisplay(void) { CloseMenu(); - pl_fbdev_finish(); + pl_fbdev_close(); //WriteConfig(); } |