Skip to content

Commit

Permalink
Fixed|HUD: Incorrect default value for "view-cross-width"
Browse files Browse the repository at this point in the history
IssueID #2425
  • Loading branch information
skyjake committed May 10, 2020
1 parent ef1ba93 commit 2701077
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions doomsday/apps/plugins/doom/src/d_main.cpp
Expand Up @@ -246,6 +246,7 @@ void D_PreInit()
cfg.common.hudIconAlpha = 1;
cfg.common.xhairAngle = 0;
cfg.common.xhairSize = .5f;
cfg.common.xhairLineWidth = 1;
cfg.common.xhairVitality = false;
cfg.common.xhairColor[0] = 1;
cfg.common.xhairColor[1] = 1;
Expand Down
1 change: 1 addition & 0 deletions doomsday/apps/plugins/doom64/src/d_main.cpp
Expand Up @@ -169,6 +169,7 @@ void D_PreInit()
cfg.common.hudIconAlpha = 0.5f;
cfg.common.xhairAngle = 0;
cfg.common.xhairSize = .5f;
cfg.common.xhairLineWidth = 1;
cfg.common.xhairVitality = false;
cfg.common.xhairColor[0] = 1;
cfg.common.xhairColor[1] = 1;
Expand Down
1 change: 1 addition & 0 deletions doomsday/apps/plugins/heretic/src/h_main.cpp
Expand Up @@ -182,6 +182,7 @@ void H_PreInit()
cfg.common.hudIconAlpha = 1;
cfg.common.xhairAngle = 0;
cfg.common.xhairSize = .5f;
cfg.common.xhairLineWidth = 1;
cfg.common.xhairVitality = false;
cfg.common.xhairColor[0] = 1;
cfg.common.xhairColor[1] = 1;
Expand Down
1 change: 1 addition & 0 deletions doomsday/apps/plugins/hexen/src/h2_main.cpp
Expand Up @@ -147,6 +147,7 @@ void X_PreInit()
cfg.common.turnSpeed = 1;
cfg.common.xhairAngle = 0;
cfg.common.xhairSize = .5f;
cfg.common.xhairLineWidth = 1;
cfg.common.xhairVitality = false;
cfg.common.xhairColor[0] = 1;
cfg.common.xhairColor[1] = 1;
Expand Down

0 comments on commit 2701077

Please sign in to comment.