The Omega Refactor(TM) + Input Options

This commit is contained in:
2025-06-30 21:29:59 -04:00
parent 6b5437a2fd
commit 30880c003d
35 changed files with 1490 additions and 1421 deletions

View File

@@ -5,10 +5,10 @@ main(s32 argc, char* argv[])
{
State state;
/* If anm2 given on command line, set state argument to that (will be loaded) */
// If anm2 given on command line, set state argument to that (will be loaded)
if (argc > 0 && argv[1])
{
strncpy(state.argument, argv[1], PATH_MAX - 1);
state.argument = argv[1];
state.isArgument = true;
}