ecore-drm2: Fix output backlight value type definitions

When we go to set output backlight level we use doubles, so lets just
store these values as doubles in the structure.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-06-06 10:44:55 -04:00
parent 2f10ce1055
commit 0dc439abbc
1 changed files with 1 additions and 1 deletions

View File

@ -766,7 +766,7 @@ struct _Ecore_Drm2_Output
struct
{
const char *path;
int value, max;
double value, max;
Ecore_Drm2_Backlight_Type type;
} backlight;