Skip to content

Commit dc0c7c2

Browse files
committed
minor build fix
1 parent 8968b55 commit dc0c7c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/demo-app/demo_app.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ void callback() {
870870

871871
std::vector<float> plotVals;
872872
for (float t = 0; t < 10.; t += 0.01) {
873-
plotVals.push_back(std::cosf(t + ImGui::GetTime()));
873+
plotVals.push_back(std::cos(t + ImGui::GetTime()));
874874
}
875875

876876
// sample plot

0 commit comments

Comments
 (0)