diff options
author | zeltermann <136022354+zeltermann@users.noreply.github.com> | 2023-06-09 06:42:23 +0200 |
---|---|---|
committer | zeltermann <136022354+zeltermann@users.noreply.github.com> | 2023-06-24 09:51:41 +0200 |
commit | 482fbded9b2dd2d5dd0ac55d66d456d7ffefaaa2 (patch) | |
tree | 1486f0f89d1734bfd915d9279cfdbcb1c15d585b /src/input_common | |
parent | Merge pull request #10891 from german77/sdl28v2 (diff) | |
download | yuzu-482fbded9b2dd2d5dd0ac55d66d456d7ffefaaa2.tar yuzu-482fbded9b2dd2d5dd0ac55d66d456d7ffefaaa2.tar.gz yuzu-482fbded9b2dd2d5dd0ac55d66d456d7ffefaaa2.tar.bz2 yuzu-482fbded9b2dd2d5dd0ac55d66d456d7ffefaaa2.tar.lz yuzu-482fbded9b2dd2d5dd0ac55d66d456d7ffefaaa2.tar.xz yuzu-482fbded9b2dd2d5dd0ac55d66d456d7ffefaaa2.tar.zst yuzu-482fbded9b2dd2d5dd0ac55d66d456d7ffefaaa2.zip |
Diffstat (limited to 'src/input_common')
-rw-r--r-- | src/input_common/drivers/sdl_driver.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/input_common/drivers/sdl_driver.cpp b/src/input_common/drivers/sdl_driver.cpp index 9a0439bb5..ab64a64a2 100644 --- a/src/input_common/drivers/sdl_driver.cpp +++ b/src/input_common/drivers/sdl_driver.cpp @@ -483,6 +483,10 @@ void SDLDriver::CloseJoysticks() { } SDLDriver::SDLDriver(std::string input_engine_) : InputEngine(std::move(input_engine_)) { + // Set our application name. Currently passed to DBus by SDL and visible to the user through + // their desktop environment. + SDL_SetHint(SDL_HINT_APP_NAME, "yuzu"); + if (!Settings::values.enable_raw_input) { // Disable raw input. When enabled this setting causes SDL to die when a web applet opens SDL_SetHint(SDL_HINT_JOYSTICK_RAWINPUT, "0"); |