Skip to content

Commit

Permalink
Fix another syntax mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia authored Sep 26, 2023
1 parent 601f2ce commit 09dfe34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ enum class PipelineFps(val fps: Int, val coolName: String) {
LOW(10, "Low (10 FPS)"),
MEDIUM(30, "Medium (30 FPS)"),
HIGH(60, "High (60 FPS)"),
HIGHEST(100, "Highest (100 FPS)");
HIGHEST(100, "Highest (100 FPS)"),
UNLIMITED_POWER(Int.MAX_VALUE, "Unlimited Power! (no FPS cap)");

companion object {
Expand Down

0 comments on commit 09dfe34

Please sign in to comment.