mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 13:25:45 +00:00
Implement gdbstub
This commit is contained in:
parent
2f6927952f
commit
1d319e5b46
18 changed files with 1174 additions and 9 deletions
|
@ -75,6 +75,10 @@ void Config::ReadValues() {
|
|||
|
||||
// Miscellaneous
|
||||
Settings::values.log_filter = glfw_config->Get("Miscellaneous", "log_filter", "*:Info");
|
||||
|
||||
// GDBStubebugging
|
||||
Settings::values.use_gdbstub = glfw_config->GetBoolean("Debugging", "use_gdbstub", false);
|
||||
Settings::values.gdbstub_port = glfw_config->GetInteger("Debugging", "gdbstub_port", 24689);
|
||||
}
|
||||
|
||||
void Config::Reload() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue