aboutsummaryrefslogtreecommitdiff
path: root/plugins/dfxvideo/draw_fb.c
diff options
context:
space:
mode:
authornotaz2010-12-28 18:33:34 +0200
committernotaz2010-12-28 18:33:34 +0200
commit6d1a1ac2f1100c69dd3e1084aede6646d6c48f1e (patch)
treeee24900e683e96530b8fc7e76e1b6d645d61ae20 /plugins/dfxvideo/draw_fb.c
parent6b8a7b882dffec0419c8d4ba9e4caab19b6f1ab8 (diff)
downloadpcsx_rearmed-6d1a1ac2f1100c69dd3e1084aede6646d6c48f1e.tar.gz
pcsx_rearmed-6d1a1ac2f1100c69dd3e1084aede6646d6c48f1e.tar.bz2
pcsx_rearmed-6d1a1ac2f1100c69dd3e1084aede6646d6c48f1e.zip
move layer control to plugin/plugin_lib
Diffstat (limited to 'plugins/dfxvideo/draw_fb.c')
-rw-r--r--plugins/dfxvideo/draw_fb.c4
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();
}