summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-24 14:35:08 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-24 14:35:08 +0000
commit1add1d65976af3d32993421941e6a77e9b11123f (patch)
treee24b63e14ac95d7ae56201d4a23af22162da1466 /libvo
parent76797a077c20618a864967cab394046882193fc0 (diff)
downloadmpv-1add1d65976af3d32993421941e6a77e9b11123f.tar.bz2
mpv-1add1d65976af3d32993421941e6a77e9b11123f.tar.xz
cosmetics: Add/remove a few newlines similar to vo_fbdev.c.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28027 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_wii.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libvo/vo_wii.c b/libvo/vo_wii.c
index c0c5aca53c..f1af3987ae 100644
--- a/libvo/vo_wii.c
+++ b/libvo/vo_wii.c
@@ -69,12 +69,12 @@ static char *fb_dev_name = NULL;
static FILE *vt_fp = NULL;
static int vt_doit = 1;
+
static int fb_dev_fd = -1;
static int fb_tty_fd = -1;
static size_t fb_size;
static uint8_t *frame_buffer;
static uint8_t *center;
-
static struct fb_var_screeninfo fb_orig_vinfo;
static struct fb_var_screeninfo fb_vinfo;
static int fb_pixel_size; // 32: 4 24: 3 16: 2 15: 2
@@ -195,7 +195,6 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
out_width = fb_vinfo.xres;
out_height = fb_vinfo.yres;
}
-
if (out_width < in_width || out_height < in_height) {
mp_msg(MSGT_VO, MSGL_ERR, "screensize is smaller than video size\n");
return 1;