Backends: Fixed zealous warnings.

This commit is contained in:
ocornut
2025-03-11 12:05:23 +01:00
parent 39585aa90d
commit 51e4cba909
2 changed files with 2 additions and 1 deletions

View File

@@ -313,6 +313,7 @@ ImGuiKey ImGui_ImplSDL3_KeyEventToImGuiKey(SDL_Keycode keycode, SDL_Scancode sca
case SDL_SCANCODE_COMMA: return ImGuiKey_Comma;
case SDL_SCANCODE_PERIOD: return ImGuiKey_Period;
case SDL_SCANCODE_SLASH: return ImGuiKey_Slash;
default: break;
}
return ImGuiKey_None;
}