Skip to content
Snippets Groups Projects
Unverified Commit 259e6528 authored by Exverge's avatar Exverge
Browse files

Fix typo in encryption keys

parent 42f3dd30
No related branches found
No related tags found
No related merge requests found
...@@ -1755,8 +1755,8 @@ bool GMainWindow::LoadROM(const QString& filename, Service::AM::FrontendAppletPa ...@@ -1755,8 +1755,8 @@ bool GMainWindow::LoadROM(const QString& filename, Service::AM::FrontendAppletPa
if (!ContentManager::AreKeysPresent()) { if (!ContentManager::AreKeysPresent()) {
QMessageBox::warning(this, tr("Derivation Components Missing"), QMessageBox::warning(this, tr("Derivation Components Missing"),
tr("Encryption keys are missing. " tr("Encryption keys are missing. "
"In order to use this emulator" "In order to use this emulator, "
"you need to provide your own encryption keys" "you need to provide your own encryption keys "
"in order to play them.")); "in order to play them."));
return false; return false;
} }
...@@ -4630,8 +4630,8 @@ void GMainWindow::OnCheckFirmwareDecryption() { ...@@ -4630,8 +4630,8 @@ void GMainWindow::OnCheckFirmwareDecryption() {
if (!ContentManager::AreKeysPresent()) { if (!ContentManager::AreKeysPresent()) {
QMessageBox::warning(this, tr("Derivation Components Missing"), QMessageBox::warning(this, tr("Derivation Components Missing"),
tr("Encryption keys are missing. " tr("Encryption keys are missing. "
"In order to use this emulator" "In order to use this emulator, "
"you need to provide your own encryption keys" "you need to provide your own encryption keys "
"in order to play them.")); "in order to play them."));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment