1
0
mirror of https://github.com/ScrelliCopter/tmx2gba.git synced 2025-02-21 03:29:25 +11:00

argparse: fix not setting required

This commit is contained in:
2024-04-07 21:24:29 +10:00
parent e53f988e46
commit d69eec8dcf

View File

@@ -27,7 +27,7 @@ namespace ArgParse
} }
static constexpr Option Required(char flag, const char* name, const char* help) static constexpr Option Required(char flag, const char* name, const char* help)
{ {
return { name, help, flag, false }; return { name, help, flag, true };
} }
}; };