Merge pull request #756 from jseward/master

Examples: SDL: Fix compile warnings.
features/sdl_renderer3_multiviewports
omar ago%!(EXTRA string=9 years) committed by GitHub
commit 9ab20e6c9c
  1. 1
      examples/sdl_opengl3_example/imgui_impl_sdl_gl3.cpp
  2. 1
      examples/sdl_opengl_example/imgui_impl_sdl.cpp

@ -152,7 +152,6 @@ bool ImGui_ImplSdlGL3_ProcessEvent(SDL_Event* event)
} }
case SDL_TEXTINPUT: case SDL_TEXTINPUT:
{ {
ImGuiIO& io = ImGui::GetIO();
io.AddInputCharactersUTF8(event->text.text); io.AddInputCharactersUTF8(event->text.text);
return true; return true;
} }

@ -131,7 +131,6 @@ bool ImGui_ImplSdl_ProcessEvent(SDL_Event* event)
} }
case SDL_TEXTINPUT: case SDL_TEXTINPUT:
{ {
ImGuiIO& io = ImGui::GetIO();
io.AddInputCharactersUTF8(event->text.text); io.AddInputCharactersUTF8(event->text.text);
return true; return true;
} }

Loading…
Cancel
Save