summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs_libzip.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-08-16common/fileutil: Convert namespace to Common::FSLioncash1-1/+1
Migrates a remaining common file over to the Common namespace, making it consistent with the rest of common files. This also allows for high-traffic FS related code to alias the filesystem function namespace as namespace FS = Common::FS; for more concise typing.
2020-04-16CMakeLists: Specify -Wextra on linux buildsLioncash1-2/+2
Allows reporting more cases where logic errors may exist, such as implicit fallthrough cases, etc. We currently ignore unused parameters, since we currently have many cases where this is intentional (virtual interfaces). While we're at it, we can also tidy up any existing code that causes warnings. This also uncovered a few bugs as well.
2019-11-12file_sys: Resolve sign conversion warningsLioncash1-1/+1
Resolves a few trivial sign conversion/mismatch errors.
2019-09-30bcat: Implement DeliveryCacheProgressImpl structureZach Hilman1-4/+4
Huge thanks to lioncash for re-ing this for me.
2019-09-30boxcat: Use Etag header names for file digestZach Hilman1-14/+10
2019-09-30vfs: Add function to extract ZIP file into virtual filesystemZach Hilman1-0/+83