diff options
| author | 2015-01-06 15:02:30 -0500 | |
|---|---|---|
| committer | 2015-01-06 15:02:30 -0500 | |
| commit | 5244ac0e9c784c402946616f913a8b4fe63af88c (patch) | |
| tree | bcf65d06fd74515c7697bd3add119e722eda667f /src/core/hle | |
| parent | SaveDataCheck: Fixed a typo (diff) | |
| download | yuzu-5244ac0e9c784c402946616f913a8b4fe63af88c.tar.gz yuzu-5244ac0e9c784c402946616f913a8b4fe63af88c.tar.xz yuzu-5244ac0e9c784c402946616f913a8b4fe63af88c.zip | |
Archives: Addressed some comments
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/fs/archive.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index e627f1d64..0834b342a 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp | |||
| @@ -36,6 +36,7 @@ namespace std { | |||
| 36 | }; | 36 | }; |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | /// TODO(Subv): Confirm length of these strings | ||
| 39 | const std::string SYSTEM_ID = "00000000000000000000000000000000"; | 40 | const std::string SYSTEM_ID = "00000000000000000000000000000000"; |
| 40 | const std::string SDCARD_ID = "00000000000000000000000000000000"; | 41 | const std::string SDCARD_ID = "00000000000000000000000000000000"; |
| 41 | 42 | ||
| @@ -436,8 +437,7 @@ void ArchiveInit() { | |||
| 436 | next_handle = 1; | 437 | next_handle = 1; |
| 437 | 438 | ||
| 438 | // TODO(Link Mauve): Add the other archive types (see here for the known types: | 439 | // TODO(Link Mauve): Add the other archive types (see here for the known types: |
| 439 | // http://3dbrew.org/wiki/FS:OpenArchive#Archive_idcodes). Currently the only half-finished | 440 | // http://3dbrew.org/wiki/FS:OpenArchive#Archive_idcodes). |
| 440 | // archive type is SDMC, so it is the only one getting exposed. | ||
| 441 | 441 | ||
| 442 | std::string sdmc_directory = FileUtil::GetUserPath(D_SDMC_IDX); | 442 | std::string sdmc_directory = FileUtil::GetUserPath(D_SDMC_IDX); |
| 443 | std::string nand_directory = FileUtil::GetUserPath(D_NAND_IDX); | 443 | std::string nand_directory = FileUtil::GetUserPath(D_NAND_IDX); |