diff options
| author | notaz | 2010-12-28 18:33:34 +0200 |
|---|---|---|
| committer | notaz | 2010-12-28 18:33:34 +0200 |
| commit | 6d1a1ac2f1100c69dd3e1084aede6646d6c48f1e (patch) | |
| tree | ee24900e683e96530b8fc7e76e1b6d645d61ae20 /plugins/dfxvideo | |
| parent | 6b8a7b882dffec0419c8d4ba9e4caab19b6f1ab8 (diff) | |
| download | pcsx_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')
| -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(); } |
