diff options
author | bunnei <bunneidev@gmail.com> | 2018-12-11 03:54:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-11 03:54:03 +0100 |
commit | 3b1043c58a743fa5efbd2d33f0080691114de964 (patch) | |
tree | fd1d4636520db18828b967b45ac7bcf53e5e689c /src/core/file_sys | |
parent | Merge pull request #1819 from DarkLordZach/disable-addons (diff) | |
parent | file_sys/directory: Amend path buffer size for directory entries (diff) | |
download | yuzu-3b1043c58a743fa5efbd2d33f0080691114de964.tar yuzu-3b1043c58a743fa5efbd2d33f0080691114de964.tar.gz yuzu-3b1043c58a743fa5efbd2d33f0080691114de964.tar.bz2 yuzu-3b1043c58a743fa5efbd2d33f0080691114de964.tar.lz yuzu-3b1043c58a743fa5efbd2d33f0080691114de964.tar.xz yuzu-3b1043c58a743fa5efbd2d33f0080691114de964.tar.zst yuzu-3b1043c58a743fa5efbd2d33f0080691114de964.zip |
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/directory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/directory.h b/src/core/file_sys/directory.h index 12bb90ec8..6690aa575 100644 --- a/src/core/file_sys/directory.h +++ b/src/core/file_sys/directory.h @@ -29,8 +29,8 @@ struct Entry { filename[copy_size] = '\0'; } - char filename[0x300]; - INSERT_PADDING_BYTES(4); + char filename[0x301]; + INSERT_PADDING_BYTES(3); EntryType type; INSERT_PADDING_BYTES(3); u64 file_size; |