Skip to content

Commit c9ef472

Browse files
committed
Brightness: fix flag --brightness-ddcci-sleep
1 parent fc3891c commit c9ef472

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Bugfixes:
3030
* Don't print display type twice (Display)
3131
* Detect BSSID instead of Wifi MAC address to align with other platforms (Wifi, macOS)
3232
* Remove support of used GPU memory detection, which is not reliable and only supported with `--gpu-force-vulkan`. (GPU)
33+
* Fix flag `--brightness-ddcci-sleep` (Brightness, Linux)
3334

3435
Logos:
3536
* Add Black Mesa

src/modules/brightness/brightness.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ bool ffParseBrightnessCommandOptions(FFBrightnessOptions* options, const char* k
9191
if (ffOptionParseModuleArgs(key, subKey, value, &options->moduleArgs))
9292
return true;
9393

94-
if (ffStrEqualsIgnCase(key, "ddcci-sleep"))
94+
if (ffStrEqualsIgnCase(subKey, "ddcci-sleep"))
9595
{
9696
options->ddcciSleep = ffOptionParseUInt32(key, value);
9797
return true;

0 commit comments

Comments
 (0)