diff options
| -rw-r--r-- | src/yuzu/configuration/config.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index d1b8c4fc9..e80a3df77 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp | |||
| @@ -863,8 +863,7 @@ void Config::ReadSystemValues() { | |||
| 863 | Settings::values.rng_seed.SetGlobal(rng_seed_global); | 863 | Settings::values.rng_seed.SetGlobal(rng_seed_global); |
| 864 | if (global || !rng_seed_global) { | 864 | if (global || !rng_seed_global) { |
| 865 | if (rng_seed_enabled) { | 865 | if (rng_seed_enabled) { |
| 866 | Settings::values.rng_seed.SetValue( | 866 | Settings::values.rng_seed.SetValue(ReadSetting(QStringLiteral("rng_seed"), 0).toUInt()); |
| 867 | ReadSetting(QStringLiteral("rng_seed"), 0).toULongLong()); | ||
| 868 | } else { | 867 | } else { |
| 869 | Settings::values.rng_seed.SetValue(std::nullopt); | 868 | Settings::values.rng_seed.SetValue(std::nullopt); |
| 870 | } | 869 | } |