1
0
mirror of https://github.com/MatMoul/g810-led.git synced 2024-12-23 01:06:11 +00:00

Fix showing available options for startup mode and on board mode in help message

This commit is contained in:
Marcin 2021-09-02 13:42:36 +02:00
parent 835aca7346
commit 1993ae72bd

View File

@ -126,8 +126,10 @@ namespace help {
cout<<" key values :\t\t\t\tabc... 123... and other (use --help-keys for more detail)"<<endl;
if((features | KeyboardFeatures::setgroup) == features)
cout<<" group values :\t\t\tlogo, indicators, fkeys, ... (use --help-keys for more detail)"<<endl;
cout<<" startup mode :\t\t\twave, color"<<endl;
cout<<" on-board mode :\t\t\tboard, software"<<endl;
if ((features | KeyboardFeatures::poweronfx) == features)
cout<<" startup mode :\t\t\twave, color"<<endl;
if ((features | KeyboardFeatures::onboardmode) == features)
cout<<" on-board mode :\t\t\tboard, software"<<endl;
cout<<endl;
}