Skip to content
Snippets Groups Projects
Commit ca7ca291 authored by Lioncash's avatar Lioncash
Browse files

input_common/sdl/sdl_impl: Mark SDLEventToButtonParamPackage() as static

Its prototype declared at the top of the translation unit contains the
static qualifier, so the function itself should also contain it to make
it a proper internally linked function.
parent b73ea457
No related branches found
No related tags found
No related merge requests found
......@@ -510,7 +510,7 @@ SDLState::~SDLState() {
}
}
Common::ParamPackage SDLEventToButtonParamPackage(SDLState& state, const SDL_Event& event) {
static Common::ParamPackage SDLEventToButtonParamPackage(SDLState& state, const SDL_Event& event) {
Common::ParamPackage params({{"engine", "sdl"}});
switch (event.type) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment