mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-07 06:25:07 +00:00
Fixed build warning.
This commit is contained in:
parent
7e7c97ac5f
commit
21581cf70c
1 changed files with 1 additions and 1 deletions
|
@ -14569,7 +14569,7 @@ void ImGui::ShowMetricsWindow(bool* p_open)
|
|||
|
||||
// Basic info
|
||||
Text("Dear ImGui %s", GetVersion());
|
||||
if (g.ContextName[0] != NULL)
|
||||
if (g.ContextName[0] != 0)
|
||||
{
|
||||
SameLine();
|
||||
Text("(Context Name: \"%s\")", g.ContextName);
|
||||
|
|
Loading…
Add table
Reference in a new issue