mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
fixed text referencing GLFW library in SDL examples
This commit is contained in:
parent
b4556c404d
commit
aa6cb32bd4
@ -356,7 +356,7 @@ void ImGui_ImplSdlGL3_NewFrame()
|
||||
g_Time = current_time;
|
||||
|
||||
// Setup inputs
|
||||
// (we already got mouse wheel, keyboard keys & characters from glfw callbacks polled in glfwPollEvents())
|
||||
// (we already got mouse wheel, keyboard keys & characters from SDL_PollEvent())
|
||||
int mx, my;
|
||||
Uint32 mouseMask = SDL_GetMouseState(&mx, &my);
|
||||
if (SDL_GetWindowFlags(g_Window) & SDL_WINDOW_MOUSE_FOCUS)
|
||||
|
@ -242,7 +242,7 @@ void ImGui_ImplSdl_NewFrame(SDL_Window *window)
|
||||
g_Time = current_time;
|
||||
|
||||
// Setup inputs
|
||||
// (we already got mouse wheel, keyboard keys & characters from glfw callbacks polled in glfwPollEvents())
|
||||
// (we already got mouse wheel, keyboard keys & characters from SDL_PollEvent())
|
||||
int mx, my;
|
||||
Uint32 mouseMask = SDL_GetMouseState(&mx, &my);
|
||||
if (SDL_GetWindowFlags(window) & SDL_WINDOW_MOUSE_FOCUS)
|
||||
|
Loading…
Reference in New Issue
Block a user