Merge pull request #756 from jseward/master

Examples: SDL: Fix compile warnings.
This commit is contained in:
omar 2016-07-31 09:28:21 +02:00 committed by GitHub
commit 9ab20e6c9c
2 changed files with 0 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}