summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/FileSystemGCWii.cpp
AgeCommit message (Collapse)Author
2015-06-02Merge pull request #2338 from JosJuice/getfilelist-returncomex
Filesystem: Return file list reference instead of modifying argument
2015-05-25Merge pull request #2361 from JosJuice/filesystem-read32Ryan Houdek
Remove CFileSystemGCWii::Read32
2015-05-25Set copyright year to when a file was createdTillmann Karras
2015-05-25Update license headers to GPLv2+Tillmann Karras
2015-05-03FileSystemGCWii: Allow reading files partiallyJosJuice
2015-05-03Remove CFileSystemGCWii::Read32JosJuice
A function that does the same thing was added to IVolume in 4cd00e3.
2015-04-28Filesystem: Return file list reference instead of modifying argumentJosJuice
2015-01-11Fix variable name ambiguityTres Walsh
2015-01-11Reduce number of allocations in CFileSystemGCWii::BuildFilenamesTres Walsh
Modify SFileInfo to use a default move constructor, and no copy constructor. Modify SFileInfo to use member initializers.
2014-12-28DiscIO: Replace "raw" functions with "decrypt" parametersJosJuice
This is intended to make decryption look less implicit in the code.
2014-10-28FileSystemGCWii: Shorten some string concatenationsLioncash
Just does it all on one line instead.
2014-09-08Include CommonTypes.h instead of Common.h.Rohit Nirmal
2014-07-15Fix another protential issue with casting.Scott Mansell
Another issue from #334 with the casting moved from the output of min to it's inputs. This is a non-issue on 64 bit machines, but if dolphin is compiled on an OS with size_t == u32 (say ARM) then remainingSize could be truncated. Restored the casting to the original order before #334.
2014-06-29Fix ISO Directory extraction.Jordan Woyak
2014-05-29Remove the min/max functions in CommonFuncs.Lioncash
The algorithm header has the same functions.
2014-03-23Fix a crash that got recently introduced.Ryan Houdek
When CFileSystemGCWii::GetFileName can't find a valid filename it would return nullptr. nullptr as a std::string throws an assert within the std lib. So return an empty string and check if it is empty or not
2014-03-16Simplify file tree building for the filesystem view.Lioncash
Technically this also simplifies on disc filename building in general.
2014-03-14Kill off some usages of c_str.Lioncash
Also changes some function params, but this is ok. Some simplifications were also able to be made (ie. killing off strcmps with ==, etc).
2014-03-09clang-modernize -use-nullptrTillmann Karras
and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine
2014-02-22Make DiscIO/ mostly IWYU clean (and fix errors in rest of the project ↵Pierre Bourdon
detected by this change).
2014-02-18Convert all includes to relative paths.Lioncash
2014-02-16Fix some vertical alignmentsLioncash
ie. uses spaces for alignment.
2013-12-31Remove unnecessary Src/ foldersJasper St. Pierre