Skip to content

Commit

Permalink
Backends: SDL3: fixed typo in 1e17d59 (ocornut#6735)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed Aug 21, 2023
1 parent ba1fa90 commit 162f8e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backends/imgui_impl_sdl3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -413,9 +413,9 @@ bool ImGui_ImplSDL3_InitForSDLRenderer(SDL_Window* window, SDL_Renderer* rendere
return ImGui_ImplSDL3_Init(window, renderer);
}

bool ImGui_ImplSDL2_InitForOther(SDL_Window* window)
bool ImGui_ImplSDL3_InitForOther(SDL_Window* window)
{
return ImGui_ImplSDL2_Init(window, nullptr);
return ImGui_ImplSDL3_Init(window, nullptr);
}

void ImGui_ImplSDL3_Shutdown()
Expand Down

0 comments on commit 162f8e0

Please sign in to comment.