Skip to content
Snippets Groups Projects
Commit 2167cb77 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix off-by-one error in program settings.

parent 9494cc30
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2226 passed
...@@ -1604,7 +1604,7 @@ void change_settings(int connected) ...@@ -1604,7 +1604,7 @@ void change_settings(int connected)
inicontents=strListInit(); inicontents=strListInit();
} }
for(i=0; i<12; i++) for(i=0; i<13; i++)
opt[i]=opts[i]; opt[i]=opts[i];
opt[i]=NULL; opt[i]=NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment