Skip to content

Commit

Permalink
Merge pull request #174 from kenkinming2002/gdb-path
Browse files Browse the repository at this point in the history
Also set gdbArgv[0] when loading gdb path from settings
  • Loading branch information
nakst authored Aug 21, 2024
2 parents 583c3b7 + 64e8c56 commit 40f2ae6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gf2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1329,6 +1329,7 @@ void SettingsLoad(bool earlyPass) {
}
} else if (0 == strcmp(state.key, "path")) {
gdbPath = state.value;
gdbArgv[0] = state.value;
} else if (0 == strcmp(state.key, "log_all_output") && atoi(state.value)) {
for (int i = 0; i < interfaceWindows.Length(); i++) {
InterfaceWindow *window = &interfaceWindows[i];
Expand Down

0 comments on commit 40f2ae6

Please sign in to comment.