2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 04:27:42 +00:00

Fixes for ANCS cooking

This commit is contained in:
Jack Andersen
2019-06-14 14:37:53 -10:00
parent 31caec79dd
commit 4fa1a2f3b7
4 changed files with 19 additions and 14 deletions

View File

@@ -24,7 +24,7 @@ namespace hecl {
unsigned VerbosityLevel = 0;
bool GuiMode = false;
logvisor::Module LogModule("hecl");
static const std::string Illegals{"<>?\"|"};
static const std::string Illegals{"<>?\""};
#if __GNUC__
__attribute__((__format__(__printf__, 1, 2)))
@@ -106,7 +106,7 @@ void SanitizePath(std::string& path) {
path.pop_back();
}
static const std::wstring WIllegals{L"<>?\"|"};
static const std::wstring WIllegals{L"<>?\""};
void SanitizePath(std::wstring& path) {
if (path.empty())