Version 1.3.3.

Fixed Screen Blanking setting not being re-read correctly.
This commit is contained in:
GuruSR 2021-11-25 22:44:26 -05:00 committed by GitHub
parent 158d74dff7
commit 82ecb71e6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2826,7 +2826,7 @@ void WatchyGSR::StoreSettings(String FromUser){
}
J++; if (L > J){
V = ((O[J] & 240) >> 4); Options.Performance = clamp(V,0,2);
Options.SleepStyle = clamp((V & 3),(WatchTime.DeadRTC ? 1 : 0),2);
Options.SleepStyle = clamp((O[J] & 3),(WatchTime.DeadRTC ? 1 : 0),2);
}
J++; if (L > J) Options.SleepMode = clamp(O[J],1,10);
J++; if (L > J) Options.SleepStart = clamp(O[J],0,23);