early-access version 2339
This commit is contained in:
parent
4d2c50cf2f
commit
69849d2d6a
2 changed files with 4 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 2335.
|
This is the source code for early-access 2339.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -1250,8 +1250,10 @@ static std::optional<QDBusObjectPath> HoldWakeLockLinux(u32 window_id = 0) {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
QVariantMap options = {};
|
QVariantMap options = {};
|
||||||
|
//: TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the
|
||||||
|
//: computer from sleeping
|
||||||
options.insert(QString::fromLatin1("reason"),
|
options.insert(QString::fromLatin1("reason"),
|
||||||
QCoreApplication::translate("GMainWindow", "yuzu is emulating a game"));
|
QCoreApplication::translate("GMainWindow", "yuzu is running a game"));
|
||||||
// 0x4: Suspend lock; 0x8: Idle lock
|
// 0x4: Suspend lock; 0x8: Idle lock
|
||||||
QDBusReply<QDBusObjectPath> reply =
|
QDBusReply<QDBusObjectPath> reply =
|
||||||
xdp.call(QString::fromLatin1("Inhibit"),
|
xdp.call(QString::fromLatin1("Inhibit"),
|
||||||
|
|
Loading…
Reference in a new issue