Skip to content

Commit

Permalink
remove suffix for float
Browse files Browse the repository at this point in the history
  • Loading branch information
Detanup01 committed Sep 25, 2024
1 parent 9ddfa82 commit a450f77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dll/dll/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ class Settings {
bool save_only_higher_stat_achievement_progress = true;
// Minimum value to indicate progress being made for the user.
int stat_int_min_diff_progress = 1;
float stat_float_min_diff_progress = 1f;
float stat_float_min_diff_progress = 1;
// the emulator loads the achievements icons is memory mainly for `ISteamUserStats::GetAchievementIcon()`
// this defines how many icons to load each iteration when the periodic callback in `Steam_User_Stats` is triggered
// or when the app calls `SteamAPI_RunCallbacks()`
Expand Down
4 changes: 2 additions & 2 deletions post_build/steam_settings.EXAMPLE/configs.main.EXAMPLE.ini
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ paginated_achievements_icons=10
# Usually good for achievement that use stat values and contains high number (ie: kill 200 cops)
# default=1
stat_int_min_diff_progress=1
# default=1f
stat_float_min_diff_progress=1f
# default=1
stat_float_min_diff_progress=1

[main::connectivity]
# 1=prevent hooking OS networking APIs and allow any external requests
Expand Down

0 comments on commit a450f77

Please sign in to comment.