commit | 21581cf70cef16db7e9a7095703f3233997596ff | [log] [tgz] |
---|---|---|
author | ocornut <omarcornut@gmail.com> | Thu Jun 20 17:45:09 2024 -0700 |
committer | ocornut <omarcornut@gmail.com> | Thu Jun 20 17:45:09 2024 -0700 |
tree | a160840914b7de3615b397b0c7e5d1df01b8e1b5 | |
parent | 7e7c97ac5f9c0137f9f2547deb46dca2dd12abda [diff] |
Fixed build warning.
diff --git a/imgui.cpp b/imgui.cpp index 7480a8d..6f90d94 100644 --- a/imgui.cpp +++ b/imgui.cpp
@@ -14569,7 +14569,7 @@ // Basic info Text("Dear ImGui %s", GetVersion()); - if (g.ContextName[0] != NULL) + if (g.ContextName[0] != 0) { SameLine(); Text("(Context Name: \"%s\")", g.ContextName);