diff options
| author | 2022-12-16 14:05:00 -0500 | |
|---|---|---|
| committer | 2022-12-16 14:05:00 -0500 | |
| commit | bbb202ceedf8c4054f6a602ad572ba8df33e315d (patch) | |
| tree | 8b51f7711e7b698ca712c24b854f88a0022e1d9c /src/common/settings.h | |
| parent | Merge pull request #9450 from ameerj/hle-ipc-vector-reserve (diff) | |
| parent | Set: Allow setting device nickname (diff) | |
| download | yuzu-bbb202ceedf8c4054f6a602ad572ba8df33e315d.tar.gz yuzu-bbb202ceedf8c4054f6a602ad572ba8df33e315d.tar.xz yuzu-bbb202ceedf8c4054f6a602ad572ba8df33e315d.zip | |
Merge pull request #6354 from ogniK5377/device-name
Set: Allow setting device nickname
Diffstat (limited to 'src/common/settings.h')
| -rw-r--r-- | src/common/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 7ce9ea23c..6b199af93 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -458,6 +458,7 @@ struct Values { | |||
| 458 | 458 | ||
| 459 | // System | 459 | // System |
| 460 | SwitchableSetting<std::optional<u32>> rng_seed{std::optional<u32>(), "rng_seed"}; | 460 | SwitchableSetting<std::optional<u32>> rng_seed{std::optional<u32>(), "rng_seed"}; |
| 461 | Setting<std::string> device_name{"Yuzu", "device_name"}; | ||
| 461 | // Measured in seconds since epoch | 462 | // Measured in seconds since epoch |
| 462 | std::optional<s64> custom_rtc; | 463 | std::optional<s64> custom_rtc; |
| 463 | // Set on game boot, reset on stop. Seconds difference between current time and `custom_rtc` | 464 | // Set on game boot, reset on stop. Seconds difference between current time and `custom_rtc` |