Skip to content

Commit

Permalink
test mingw build
Browse files Browse the repository at this point in the history
  • Loading branch information
Makevelli committed Mar 1, 2024
1 parent 4c45eca commit e79dc64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/hud_elements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1205,6 +1205,7 @@ void HudElements::device_battery()

void HudElements::liquid_stats()
{
#ifndef _WIN32
if (HUDElements.params->enabled[OVERLAY_PARAM_ENABLED_liquid])
{
std::vector<WatercoolingDevice> devices = liquidStats.GetDevicesData();
Expand Down Expand Up @@ -1273,6 +1274,7 @@ void HudElements::liquid_stats()
}
}
}
#endif
}

void HudElements::frame_count(){
Expand Down
4 changes: 2 additions & 2 deletions src/overlay_params.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -719,15 +719,15 @@ static void set_param_defaults(struct overlay_params *params){
params->fps_color = { 0xb22222, 0xfdfd09, 0x39f900 };
params->fps_value = { 30, 60 };
params->round_corners = 0;
params->battery_color =0xff9078;
params->battery_color = 0xff9078;
params->fsr_steam_sharpness = -1;
params->picmip = -17;
params->af = -1;
params->font_size = 24;
params->table_columns = 3;
params->text_outline_color = 0x000000;
params->text_outline_thickness = 1.5;
params->liquid_color=0x3fcbd4;
params->liquid_color = 0x3fcbd4;
params->liquid_text = "Liquid";
}

Expand Down

0 comments on commit e79dc64

Please sign in to comment.