mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 13:35:09 +00:00
Backends: SDL: Fix for Emscriptem. Amend 98ce013
.
This commit is contained in:
parent
9551635684
commit
553b04883e
1 changed files with 1 additions and 1 deletions
|
@ -424,7 +424,7 @@ static void ImGui_ImplSDL2_UpdateMouseData()
|
|||
{
|
||||
int window_x, window_y, mouse_x_global, mouse_y_global;
|
||||
SDL_GetGlobalMouseState(&mouse_x_global, &mouse_y_global);
|
||||
SDL_GetWindowPosition(focused_window, &window_x, &window_y);
|
||||
SDL_GetWindowPosition(bd->Window, &window_x, &window_y);
|
||||
io.MousePos = ImVec2((float)(mouse_x_global - window_x), (float)(mouse_y_global - window_y));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue