mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 07:37:45 +00:00
settings: Add telemetry endpoint URL.
This commit is contained in:
parent
e5a69c42e2
commit
de913af2c7
4 changed files with 23 additions and 0 deletions
|
@ -151,6 +151,10 @@ void Config::ReadValues() {
|
|||
Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false);
|
||||
Settings::values.gdbstub_port =
|
||||
static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689));
|
||||
|
||||
// Web Service
|
||||
Settings::values.telemetry_endpoint_url = sdl2_config->Get(
|
||||
"WebService", "telemetry_endpoint_url", "https://services.citra-emu.org/api/telemetry");
|
||||
}
|
||||
|
||||
void Config::Reload() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue