diff options
author | notaz | 2011-01-16 00:22:30 +0200 |
---|---|---|
committer | notaz | 2011-01-16 00:22:41 +0200 |
commit | 7947ab550d7e0bf2964e479429b6f7251ae46bcf (patch) | |
tree | 3b533b6faa896c563a3c1d71b76ec45a8cb91b00 | |
parent | ca7c944853bbb689040c530655e2da231c40db5b (diff) | |
download | pcsx_rearmed-7947ab550d7e0bf2964e479429b6f7251ae46bcf.tar.gz pcsx_rearmed-7947ab550d7e0bf2964e479429b6f7251ae46bcf.tar.bz2 pcsx_rearmed-7947ab550d7e0bf2964e479429b6f7251ae46bcf.zip |
bugfix
-rw-r--r-- | frontend/plugin_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c index 93640c3..dfa2fae 100644 --- a/frontend/plugin_lib.c +++ b/frontend/plugin_lib.c @@ -67,7 +67,7 @@ void *pl_fbdev_set_mode(int w, int h, int bpp) void *ret; if (w == pl_fbdev_w && h == pl_fbdev_h && bpp == pl_fbdev_bpp) - return 0; + return pl_fbdev_buf; pl_fbdev_w = w; pl_fbdev_h = h; |