summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-12 18:00:08 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-12 18:00:08 +0000
commit23a98b65a0a5181c94c08ed270e51ea2a083003f (patch)
treebf0ae81b8a8dbbdcd90b97208450f6816a90808d
parent3b8074ebf586233b1a00ef479e667d00183ce7c3 (diff)
downloadmpv-23a98b65a0a5181c94c08ed270e51ea2a083003f.tar.bz2
mpv-23a98b65a0a5181c94c08ed270e51ea2a083003f.tar.xz
min/max float->double
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10583 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--cfgparser.h2
-rw-r--r--m_config.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/cfgparser.h b/cfgparser.h
index 7048c723a9..29a9beba53 100644
--- a/cfgparser.h
+++ b/cfgparser.h
@@ -57,7 +57,7 @@ struct config {
void *p;
unsigned int type;
unsigned int flags;
- float min,max;
+ double min,max;
/* Use this field when your need to do something before a new value is
assigned to your option */
cfg_default_func_t default_func;
diff --git a/m_config.h b/m_config.h
index 709ac6cdf5..78d72aa8b0 100644
--- a/m_config.h
+++ b/m_config.h
@@ -71,7 +71,7 @@ struct config {
void *p;
struct m_option_type* type;
unsigned int flags;
- float min,max;
+ double min,max;
void* priv;
};