From 0bed8080d5b9d2c319596f9d620c0f7a4e4fad48 Mon Sep 17 00:00:00 2001 From: superp00t Date: Sat, 15 Mar 2025 22:53:38 -0400 Subject: [PATCH] fix(os): added missing increment to OsSetCommandLine --- bc/os/CommandLine.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/bc/os/CommandLine.cpp b/bc/os/CommandLine.cpp index 8ce0bd7..39e376c 100644 --- a/bc/os/CommandLine.cpp +++ b/bc/os/CommandLine.cpp @@ -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 }