Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dll/dll/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ class Settings {
bool overlay_always_show_fps = false;
bool overlay_always_show_frametime = false;
bool overlay_always_show_playtime = false;
std::string overlay_avatar_picker_default_path = "";
// keys used to toggle the overlay, default = Shift + Tab
std::vector<std::string> overlay_toggle_keys{};
// minimum time interval between achievement notifications (in milliseconds)
Expand Down
3 changes: 3 additions & 0 deletions dll/settings_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1635,6 +1635,9 @@ static void parse_overlay_general_config(class Settings *settings_client, class
settings_client->overlay_always_show_playtime = ini.GetBoolValue("overlay::general", "overlay_always_show_playtime", settings_client->overlay_always_show_playtime);
settings_server->overlay_always_show_playtime = ini.GetBoolValue("overlay::general", "overlay_always_show_playtime", settings_server->overlay_always_show_playtime);

settings_client->overlay_avatar_picker_default_path = common_helpers::string_strip(ini.GetValue("overlay::general", "avatar_picker_default_path", ""));
settings_server->overlay_avatar_picker_default_path = common_helpers::string_strip(ini.GetValue("overlay::general", "avatar_picker_default_path", ""));

{
auto val = ini.GetLongValue("overlay::general", "fps_averaging_window", settings_client->overlay_fps_avg_window);
if (val > 0) {
Expand Down
1,397 changes: 1,397 additions & 0 deletions overlay_experimental/fonts/FontAwesome.hpp

Large diffs are not rendered by default.

496 changes: 496 additions & 0 deletions overlay_experimental/fonts/FontAwesomeBrands.hpp

Large diffs are not rendered by default.

9,448 changes: 9,448 additions & 0 deletions overlay_experimental/fonts/RawAwesome6.hpp

Large diffs are not rendered by default.

Loading