Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-tim707 committed Nov 17, 2023
1 parent 6c48ab0 commit 2b61151
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mods/QualityOfLife/compile.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set LIBS=-lgdi32 -lcomctl32
g++ -o swr_reimpl.dll %SOURCES% %FLAGS% %INCLUDES% %LIBS%

move swr_reimpl.dll "C:\Users\Tim\Desktop\STAR WARS Racer - Copy"
copy Loader_config.txt "C:\Users\Tim\Desktop\STAR WARS Racer - Copy"
echo No | copy /-Y Loader_config.txt "C:\Users\Tim\Desktop\STAR WARS Racer - Copy"
2 changes: 1 addition & 1 deletion mods/QualityOfLife/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ void parseConfig(LoaderConfig* config_out)
}
else if (strcasecmp("changeWindowFlags", token) == 0)
{
if (strcasecmp("true", value) == 0 || strcasecmp("yes", value) == 0 || strcmp("1", value))
if (strcasecmp("true", value) == 0 || strcasecmp("yes", value) == 0 || strcmp("1", value) == 0)
config_out->changeWindowFlags = true;
continue;
}
Expand Down

0 comments on commit 2b61151

Please sign in to comment.