min/max float->double

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10583 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2003-08-12 18:00:08 +00:00
parent 3b8074ebf5
commit 23a98b65a0
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -71,7 +71,7 @@ struct config {
void *p;
struct m_option_type* type;
unsigned int flags;
float min,max;
double min,max;
void* priv;
};