Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Advanced Fatigue - Fix config macro #10334

Merged
merged 3 commits into from
Sep 24, 2024
Merged
Changes from 2 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
4 changes: 2 additions & 2 deletions addons/advanced_fatigue/CfgEden.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class Cfg3DEN {
class Slider;
class GVAR(slider): Slider {
#pragma hemtt suppress pw3_padded_arg
attributeLoad = QUOTE(
attributeLoad = QUOTE(\
params ['_ctrlGroup']; \
private _slider = _ctrlGroup controlsGroupCtrl 100; \
private _edit = _ctrlGroup controlsGroupCtrl 101; \
Expand All @@ -12,7 +12,7 @@ class Cfg3DEN {
);
attributeSave = QUOTE(params ['_ctrlGroup']; sliderPosition (_ctrlGroup controlsGroupCtrl 100));
#pragma hemtt suppress pw3_padded_arg
onLoad = QUOTE(
onLoad = QUOTE( \
PabstMirror marked this conversation as resolved.
Show resolved Hide resolved
params ['_ctrlGroup']; \
private _slider = _ctrlGroup controlsGroupCtrl 100; \
private _edit = _ctrlGroup controlsGroupCtrl 101; \
Expand Down