Minor amend 9028088 (#3261)

This commit is contained in:
ocornut
2020-05-25 11:42:20 +02:00
parent 43f79aa210
commit 9c209d5a90
4 changed files with 9 additions and 11 deletions

View File

@ -68,7 +68,7 @@ enum GlfwClientApi
static GLFWwindow* g_Window = NULL; // Main window
static GlfwClientApi g_ClientApi = GlfwClientApi_Unknown;
static double g_Time = 0.0;
static bool g_MouseJustPressed[5] = { false, false, false, false, false };
static bool g_MouseJustPressed[ImGuiMouseButton_COUNT] = {};
static GLFWcursor* g_MouseCursors[ImGuiMouseCursor_COUNT] = {};
static bool g_InstalledCallbacks = false;