[c-host] update to use new option validator and tidy up output

This commit is contained in:
Geoffrey McRae
2019-05-11 11:35:42 +10:00
parent 86c7286aad
commit 2ddae623b8
3 changed files with 12 additions and 6 deletions

View File

@@ -276,6 +276,12 @@ int app_main(int argc, char * argv[])
return -1;
}
if (!option_validate())
{
option_free();
return -1;
}
// perform platform specific initialization
if (!app_init())
return -1;