mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 19:44:55 +00:00
Merge branch 'master' of https://github.com/AxioDL/hecl
This commit is contained in:
2
hecl/extern/athena
vendored
2
hecl/extern/athena
vendored
Submodule hecl/extern/athena updated: a2d040aeb4...5074381533
@@ -525,13 +525,13 @@ std::vector<std::pair<hecl::SystemString, std::string>> GetSystemLocations()
|
||||
|
||||
while (result != kCFURLEnumeratorEnd)
|
||||
{
|
||||
char defPath[MAXPATHLEN];
|
||||
char defPath[1024];
|
||||
|
||||
result = CFURLEnumeratorGetNextURL(volEnum, &cfURL, NULL);
|
||||
if (result != kCFURLEnumeratorSuccess)
|
||||
continue;
|
||||
|
||||
CFURLGetFileSystemRepresentation(cfURL, false, (UInt8 *)defPath, MAXPATHLEN);
|
||||
CFURLGetFileSystemRepresentation(cfURL, false, (UInt8 *)defPath, 1024);
|
||||
ret.push_back(NameFromPath(defPath));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user