Skip to content

Commit

Permalink
Remove the Cursor tracking mode as an option.
Browse files Browse the repository at this point in the history
  • Loading branch information
realSquidCoder committed Jan 25, 2025
1 parent 4436a58 commit bd426b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UserInput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ void action_cycletrackingmode(uint32_t keymod)
}
else {
ssConfig.config.track_mode = (Config::trackingmode)(ssConfig.config.track_mode + 1);
if (ssConfig.config.track_mode >= Config::TRACKING_INVALID) {
if (ssConfig.config.track_mode > Config::TRACKING_CENTER) {
ssConfig.config.track_mode = Config::TRACKING_NONE;
}
}
Expand Down

0 comments on commit bd426b8

Please sign in to comment.