1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 13:03:11 +01:00

new-argparse: implement most of the root commands, fix issues

This commit is contained in:
IntelOrca
2016-01-10 19:41:09 +00:00
parent 9d98147b75
commit 3f0073f29c
16 changed files with 406 additions and 168 deletions

View File

@@ -25,6 +25,15 @@ namespace Console
}
}
void WriteFormat(const utf8 * format, ...)
{
va_list args;
va_start(args, format);
vfprintf(stdout, format, args);
va_end(args);
}
void WriteLine()
{
puts("");