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

Fix program settings menu...

The last item was being cut off on my system (uninitialized value)
parent dd7332ba
No related branches found
No related tags found
No related merge requests found
Pipeline #8759 passed
......@@ -2267,7 +2267,7 @@ change_settings(int connected)
else
inicontents = strListInit();
for (i = 0; i < 14; i++)
for (i = 0; i < 15; i++)
opt[i] = opts[i];
opt[i] = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment