diff options
author | Lioncash <mathew1800@gmail.com> | 2019-06-03 22:23:14 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-06-03 22:56:47 +0200 |
commit | ca7ca2919c560cafcf20fe3718768dff0e02cfa4 (patch) | |
tree | e84323be3e3ffef28dcb916aa128c7c0d2a5a137 /src/input_common/sdl/sdl_impl.cpp | |
parent | input_common/sdl/sdl_impl: Convert reinterpret_cast into a static_cast (diff) | |
download | yuzu-ca7ca2919c560cafcf20fe3718768dff0e02cfa4.tar yuzu-ca7ca2919c560cafcf20fe3718768dff0e02cfa4.tar.gz yuzu-ca7ca2919c560cafcf20fe3718768dff0e02cfa4.tar.bz2 yuzu-ca7ca2919c560cafcf20fe3718768dff0e02cfa4.tar.lz yuzu-ca7ca2919c560cafcf20fe3718768dff0e02cfa4.tar.xz yuzu-ca7ca2919c560cafcf20fe3718768dff0e02cfa4.tar.zst yuzu-ca7ca2919c560cafcf20fe3718768dff0e02cfa4.zip |
Diffstat (limited to 'src/input_common/sdl/sdl_impl.cpp')
-rw-r--r-- | src/input_common/sdl/sdl_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index c5589eb73..3b5a4a8fc 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp @@ -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) { |