diff options
| author | 2019-01-07 19:40:23 -0500 | |
|---|---|---|
| committer | 2019-01-07 19:40:28 -0500 | |
| commit | ac7d8983ebc75b1b5e150ea7e03ff54267faf670 (patch) | |
| tree | 78ebbaa9f9af1570a16d6985943ac4b492d89b55 /src/core | |
| parent | settings: Use std::chrono::seconds instead of s64 for RTC (diff) | |
| download | yuzu-ac7d8983ebc75b1b5e150ea7e03ff54267faf670.tar.gz yuzu-ac7d8983ebc75b1b5e150ea7e03ff54267faf670.tar.xz yuzu-ac7d8983ebc75b1b5e150ea7e03ff54267faf670.zip | |
settings: Fix comment structure
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/settings.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index bb5aafa0c..29ce98983 100644 --- a/src/core/settings.h +++ b/src/core/settings.h | |||
| @@ -351,10 +351,11 @@ struct Values { | |||
| 351 | bool use_docked_mode; | 351 | bool use_docked_mode; |
| 352 | bool enable_nfc; | 352 | bool enable_nfc; |
| 353 | std::optional<u32> rng_seed; | 353 | std::optional<u32> rng_seed; |
| 354 | std::optional<std::chrono::seconds> custom_rtc; // Measured in seconds since epoch | 354 | // Measured in seconds since epoch |
| 355 | std::chrono::seconds | 355 | std::optional<std::chrono::seconds> custom_rtc; |
| 356 | custom_rtc_differential; // Set on game boot, reset on stop. Seconds difference between | 356 | // Set on game boot, reset on stop. Seconds difference between current time and `custom_rtc` |
| 357 | // current time and `custom_rtc` | 357 | std::chrono::seconds custom_rtc_differential; |
| 358 | |||
| 358 | s32 current_user; | 359 | s32 current_user; |
| 359 | s32 language_index; | 360 | s32 language_index; |
| 360 | 361 | ||