Updated boo API

This commit is contained in:
Jack Andersen 2018-01-09 20:18:15 -10:00
parent fd292491c7
commit f37296d560
1 changed files with 3 additions and 2 deletions

View File

@ -1031,8 +1031,9 @@ int main(int argc, const boo::SystemChar** argv)
logvisor::RegisterConsoleLogger();
logvisor::RegisterStandardExceptions();
AppCallback app(argc, argv);
int ret = boo::ApplicationRun(boo::IApplication::EPlatformType::Auto, app, _S("amuseplay"), _S("Amuse Player"),
argc, argv, 1, 1, false);
int ret = boo::ApplicationRun(boo::IApplication::EPlatformType::Auto, app,
_S("amuseplay"), _S("Amuse Player"),
argc, argv, {}, 1, 1, false);
printf("IM DYING!!\n");
return ret;
}