summaryrefslogtreecommitdiff
path: root/src/common/settings.h
diff options
context:
space:
mode:
authorZephyron <zephyron@citron-emu.org>2024-12-31 17:07:49 +1000
committerZephyron <zephyron@citron-emu.org>2024-12-31 17:07:49 +1000
commitb3facaa6bb30cdc39f2b7d632fef1e3bfeee7785 (patch)
tree77d03cd30542cd5e1addc61f240b8120a5909e90 /src/common/settings.h
parent6778aa8ec8e5fa0d246ac4b9ec00c10213c30ce5 (diff)
chore: update project references and add Citron copyright
- Replaced all references to the old project name with Citron. - Added Citron copyright information alongside existing notices in all files.
Diffstat (limited to 'src/common/settings.h')
-rw-r--r--src/common/settings.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/settings.h b/src/common/settings.h
index 61969af2b..27f98dcb6 100644
--- a/src/common/settings.h
+++ b/src/common/settings.h
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
+// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project & 2025 citron Homebrew Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
@@ -471,7 +471,7 @@ struct Values {
linkage, 0, "rng_seed", Category::System, Specialization::Hex,
true, true, &rng_seed_enabled};
Setting<std::string> device_name{
- linkage, "yuzu", "device_name", Category::System, Specialization::Default, true, true};
+ linkage, "citron", "device_name", Category::System, Specialization::Default, true, true};
Setting<s32> current_user{linkage, 0, "current_user", Category::System};
@@ -610,11 +610,11 @@ struct Values {
// WebService
Setting<bool> enable_telemetry{linkage, true, "enable_telemetry", Category::WebService};
- Setting<std::string> web_api_url{linkage, "https://api.yuzu-emu.org", "web_api_url",
+ Setting<std::string> web_api_url{linkage, "https://api.citron-emu.org", "web_api_url",
Category::WebService};
- Setting<std::string> yuzu_username{linkage, std::string(), "yuzu_username",
+ Setting<std::string> citron_username{linkage, std::string(), "citron_username",
Category::WebService};
- Setting<std::string> yuzu_token{linkage, std::string(), "yuzu_token", Category::WebService};
+ Setting<std::string> citron_token{linkage, std::string(), "citron_token", Category::WebService};
// Add-Ons
std::map<u64, std::vector<std::string>> disabled_addons;