Use `toUtf8()` for string passed to DBus

master
zeltermann 2023-07-03 14:46:17 +07:00 committed by GitHub
parent 95ceae40e6
commit d2b62ae401
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -454,7 +454,7 @@ GMainWindow::GMainWindow(std::unique_ptr<Config> config_, bool has_broken_vulkan
// the user through their desktop environment. // the user through their desktop environment.
//: TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the //: TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the
//: computer from sleeping //: computer from sleeping
QByteArray wakelock_reason = tr("Running a game").toLatin1(); QByteArray wakelock_reason = tr("Running a game").toUtf8();
SDL_SetHint(SDL_HINT_SCREENSAVER_INHIBIT_ACTIVITY_NAME, wakelock_reason.data()); SDL_SetHint(SDL_HINT_SCREENSAVER_INHIBIT_ACTIVITY_NAME, wakelock_reason.data());
// SDL disables the screen saver by default, and setting the hint // SDL disables the screen saver by default, and setting the hint