fix(bc): OsSetCommandLine initialize counter i to 0

This commit is contained in:
phaneron 2023-12-02 12:48:25 -05:00
parent 9c714d93df
commit 58c8a50e8f

View file

@ -47,7 +47,7 @@ std::string CheckArgument(std::string argument) {
}
void OsSetCommandLine(int32_t argc, char** argv) {
int32_t i;
int32_t i = 0;
std::string result = "";
while (i < argc) {