diff options
| author | 2018-09-19 13:46:32 -0400 | |
|---|---|---|
| committer | 2018-09-19 14:22:37 -0400 | |
| commit | f272261c210877fadc486d6a0413f4770f04ca89 (patch) | |
| tree | 0b51fdd9b93fcaf3d75db18fea027c56224962a2 /src | |
| parent | xts_archive: Amend initializer order of NAX's constructor (diff) | |
| download | yuzu-f272261c210877fadc486d6a0413f4770f04ca89.tar.gz yuzu-f272261c210877fadc486d6a0413f4770f04ca89.tar.xz yuzu-f272261c210877fadc486d6a0413f4770f04ca89.zip | |
xts_archive: Ensure NAX's type member is always initialized
Ensures that the member always has a deterministic value.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/file_sys/xts_archive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/xts_archive.h b/src/core/file_sys/xts_archive.h index 55d2154a6..0dd0536f1 100644 --- a/src/core/file_sys/xts_archive.h +++ b/src/core/file_sys/xts_archive.h | |||
| @@ -60,7 +60,7 @@ private: | |||
| 60 | 60 | ||
| 61 | VirtualFile file; | 61 | VirtualFile file; |
| 62 | Loader::ResultStatus status; | 62 | Loader::ResultStatus status; |
| 63 | NAXContentType type; | 63 | NAXContentType type{}; |
| 64 | 64 | ||
| 65 | VirtualFile dec_file; | 65 | VirtualFile dec_file; |
| 66 | 66 | ||