Skip to content

Commit

Permalink
Fix compile warnings in SDL examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jseward committed Jul 30, 2016
1 parent 954c890 commit 0a1d456
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion examples/sdl_opengl3_example/imgui_impl_sdl_gl3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ bool ImGui_ImplSdlGL3_ProcessEvent(SDL_Event* event)
}
case SDL_TEXTINPUT:
{
ImGuiIO& io = ImGui::GetIO();
io.AddInputCharactersUTF8(event->text.text);
return true;
}
Expand Down
1 change: 0 additions & 1 deletion examples/sdl_opengl_example/imgui_impl_sdl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ bool ImGui_ImplSdl_ProcessEvent(SDL_Event* event)
}
case SDL_TEXTINPUT:
{
ImGuiIO& io = ImGui::GetIO();
io.AddInputCharactersUTF8(event->text.text);
return true;
}
Expand Down

0 comments on commit 0a1d456

Please sign in to comment.