Examples: Clang/Linux warning fixes.

This commit is contained in:
ocornut
2015-03-09 13:08:27 +00:00
parent a3f3793cb6
commit 2dd92e3eed
2 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ bool ImGui_ImplGlfw_Init(GLFWwindow* window, bool install_callbacks)
void ImGui_ImplGlfw_Shutdown()
{
if (GLuint tex_id = (GLuint)ImGui::GetIO().Fonts->TexID)
if (GLuint tex_id = (GLuint)(intptr_t)ImGui::GetIO().Fonts->TexID)
{
glDeleteTextures(1, &tex_id);
ImGui::GetIO().Fonts->TexID = 0;