Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Maintenance - Mise à jour mensuelle Lundi 6 Février entre 7h00 et 9h00
Open sidebar
Gauthier Quesnel
irritator
Commits
d98b2c78
Commit
d98b2c78
authored
Aug 11, 2020
by
Gauthier Quesnel
Browse files
gui: fix printf format arguments
parent
c173318f
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/gui/node-editor.cpp
View file @
d98b2c78
...
...
@@ -1828,7 +1828,7 @@ static void
show_dynamics_values
(
const
qss1_cross
&
dyn
)
{
ImGui
::
Text
(
"value: %.3f"
,
dyn
.
value
[
0
]);
ImGui
::
Text
(
"if-value: %.3f"
,
dyn
.
if_value
);
ImGui
::
Text
(
"if-value: %.3f"
,
dyn
.
if_value
[
0
]
);
ImGui
::
Text
(
"else-value: %.3f"
,
dyn
.
else_value
);
}
...
...
@@ -1836,7 +1836,7 @@ static void
show_dynamics_values
(
const
qss2_cross
&
dyn
)
{
ImGui
::
Text
(
"value: %.3f"
,
dyn
.
value
[
0
]);
ImGui
::
Text
(
"if-value: %.3f"
,
dyn
.
if_value
);
ImGui
::
Text
(
"if-value: %.3f"
,
dyn
.
if_value
[
0
]
);
ImGui
::
Text
(
"else-value: %.3f"
,
dyn
.
else_value
);
}
...
...
@@ -1844,7 +1844,7 @@ static void
show_dynamics_values
(
const
qss3_cross
&
dyn
)
{
ImGui
::
Text
(
"value: %.3f"
,
dyn
.
value
[
0
]);
ImGui
::
Text
(
"if-value: %.3f"
,
dyn
.
if_value
);
ImGui
::
Text
(
"if-value: %.3f"
,
dyn
.
if_value
[
0
]
);
ImGui
::
Text
(
"else-value: %.3f"
,
dyn
.
else_value
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment