fix(os): added missing increment to OsSetCommandLine

This commit is contained in:
phaneron 2025-03-15 22:53:38 -04:00
parent 26f3d5527e
commit 0bed8080d5

View file

@ -84,6 +84,7 @@ void OsSetCommandLine(int argc, char* argv[]) {
int i = 0;
while (i < argc) {
append_commandline(commandline, sizeof(commandline), argv[i]);
i++;
}
#endif
}