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:
@@ -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("");
|
||||
|
||||
Reference in New Issue
Block a user