Skip to content

Commit

Permalink
fix: Change boolean to integer for dynamic FPS
Browse files Browse the repository at this point in the history
  • Loading branch information
ryenyuku authored May 6, 2024
1 parent 7533641 commit d387342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/me/phh/treble/app/Misc.kt
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ object Misc: EntryStartup {
}
MiscSettings.dynamicFps -> {
val value = sp.getBoolean(key, false)
SystemProperties.set("persist.sys.phh.dynamic_fps", if (value) "true" else "false")
SystemProperties.set("persist.sys.phh.dynamic_fps", if (value) "1" else "0")
}
MiscSettings.remotectl -> {
val value = sp.getBoolean(key, false)
Expand Down

0 comments on commit d387342

Please sign in to comment.