summaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-23 22:34:51 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-23 22:34:51 +0000
commit9b72cde1256c262aee64ba2b0c1d4e24c2b4c108 (patch)
tree99fd92c60a132605eafbd3d8b44afda7e11f2b9c /command.c
parent127ed985dda9f9620e2e853000b41d83af9d0723 (diff)
downloadmpv-9b72cde1256c262aee64ba2b0c1d4e24c2b4c108.tar.bz2
mpv-9b72cde1256c262aee64ba2b0c1d4e24c2b4c108.tar.xz
cosmetic: reindent code after r25843
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25844 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'command.c')
-rw-r--r--command.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/command.c b/command.c
index f2c33f417a..987cf840de 100644
--- a/command.c
+++ b/command.c
@@ -1803,8 +1803,8 @@ static int mp_property_sub_scale(m_option_t * prop, int action, void *arg,
}
else {
#endif
- text_font_scale_factor = *(float *) arg;
- force_load_font = 1;
+ text_font_scale_factor = *(float *) arg;
+ force_load_font = 1;
#ifdef USE_ASS
}
#endif
@@ -1820,10 +1820,10 @@ static int mp_property_sub_scale(m_option_t * prop, int action, void *arg,
}
else {
#endif
- text_font_scale_factor += (arg ? *(float *) arg : 0.1)*
- (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0);
- M_PROPERTY_CLAMP(prop, text_font_scale_factor);
- force_load_font = 1;
+ text_font_scale_factor += (arg ? *(float *) arg : 0.1)*
+ (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0);
+ M_PROPERTY_CLAMP(prop, text_font_scale_factor);
+ force_load_font = 1;
#ifdef USE_ASS
}
#endif
@@ -1834,7 +1834,7 @@ static int mp_property_sub_scale(m_option_t * prop, int action, void *arg,
return m_property_float_ro(prop, action, arg, ass_font_scale);
else
#endif
- return m_property_float_ro(prop, action, arg, text_font_scale_factor);
+ return m_property_float_ro(prop, action, arg, text_font_scale_factor);
}
}
#endif