summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-07-29 03:39:42 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-01 06:16:54 +0200
commit239a3113e4c6a53a2c7b12e67a0f21afae24b0aa (patch)
tree027bc4288f08be240d0b9b2a5f6c6431e76b8b4f /src/yuzu_cmd
parentExtract mbedtls to cpp file (diff)
downloadyuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.tar
yuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.tar.gz
yuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.tar.bz2
yuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.tar.lz
yuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.tar.xz
yuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.tar.zst
yuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.zip
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r--src/yuzu_cmd/yuzu.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index 955e2ba14..97a8e13f0 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -73,19 +73,6 @@ static void InitializeLogging() {
int main(int argc, char** argv) {
Config config;
- // Initialize keys
- std::string keys_dir = FileUtil::GetHactoolConfigurationPath();
- if (Settings::values.use_dev_keys) {
- Crypto::keys.SetValidationMode(true);
- if (FileUtil::Exists(keys_dir + DIR_SEP + "dev.keys"))
- Crypto::keys.LoadFromFile(keys_dir + DIR_SEP + "dev.keys", false);
- } else {
- if (FileUtil::Exists(keys_dir + DIR_SEP + "prod.keys"))
- Crypto::keys.LoadFromFile(keys_dir + DIR_SEP + "prod.keys", false);
- }
- if (FileUtil::Exists(keys_dir + DIR_SEP + "title.keys"))
- Crypto::keys.LoadFromFile(keys_dir + DIR_SEP + "title.keys", true);
-
int option_index = 0;
bool use_gdbstub = Settings::values.use_gdbstub;
u32 gdb_port = static_cast<u32>(Settings::values.gdbstub_port);