mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
Merge pull request #12508 from CTCaer/unix-bl-bri-fix
plat: unix: correct backlight max_brightness path
This commit is contained in:
commit
32ed7ed1d7
@ -1349,15 +1349,15 @@ static void frontend_unix_set_screen_brightness(int value)
|
||||
char *buffer = NULL;
|
||||
char svalue[16] = {0};
|
||||
unsigned int max_brightness = 100;
|
||||
#if !defined(HAVE_LAKKA_SWITCH)
|
||||
filestream_read_file("/sys/devices/platform/backlight/backlight/backlight/max_brightness",
|
||||
|
||||
/* Device tree should have 'label = "backlight";' if control is desirable */
|
||||
filestream_read_file("/sys/class/backlight/backlight/max_brightness",
|
||||
&buffer, NULL);
|
||||
if (buffer)
|
||||
{
|
||||
sscanf(buffer, "%u", &max_brightness);
|
||||
free(buffer);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Calculate the brightness */
|
||||
value = (value * max_brightness) / 100;
|
||||
|
Loading…
x
Reference in New Issue
Block a user