diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/yuzu/configuration/configure.ui | 2 | ||||
| -rw-r--r-- | src/yuzu/configuration/configure_system.cpp | 4 | ||||
| -rw-r--r-- | src/yuzu/main.cpp | 18 | ||||
| -rw-r--r-- | src/yuzu/main.ui | 2 | ||||
| -rw-r--r-- | src/yuzu_cmd/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 4 |
7 files changed, 18 insertions, 18 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 447d7198c..26cf9480b 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -8,7 +8,7 @@ if ($ENV{CI}) | |||
| 8 | set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME}) | 8 | set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME}) |
| 9 | endif() | 9 | endif() |
| 10 | # regex capture the string nightly or bleeding-edge into CMAKE_MATCH_1 | 10 | # regex capture the string nightly or bleeding-edge into CMAKE_MATCH_1 |
| 11 | string(REGEX MATCH "citra-emu/citra-?(.*)" OUTVAR ${BUILD_REPOSITORY}) | 11 | string(REGEX MATCH "yuzu-emu/yuzu-?(.*)" OUTVAR ${BUILD_REPOSITORY}) |
| 12 | if (${CMAKE_MATCH_COUNT} GREATER 0) | 12 | if (${CMAKE_MATCH_COUNT} GREATER 0) |
| 13 | # capitalize the first letter of each word in the repo name. | 13 | # capitalize the first letter of each word in the repo name. |
| 14 | string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1}) | 14 | string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1}) |
diff --git a/src/yuzu/configuration/configure.ui b/src/yuzu/configuration/configure.ui index 8b92a907c..babd583a2 100644 --- a/src/yuzu/configuration/configure.ui +++ b/src/yuzu/configuration/configure.ui | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | </rect> | 11 | </rect> |
| 12 | </property> | 12 | </property> |
| 13 | <property name="windowTitle"> | 13 | <property name="windowTitle"> |
| 14 | <string>Citra Configuration</string> | 14 | <string>yuzu Configuration</string> |
| 15 | </property> | 15 | </property> |
| 16 | <layout class="QVBoxLayout" name="verticalLayout"> | 16 | <layout class="QVBoxLayout" name="verticalLayout"> |
| 17 | <item> | 17 | <item> |
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp index 00966266b..417afef87 100644 --- a/src/yuzu/configuration/configure_system.cpp +++ b/src/yuzu/configuration/configure_system.cpp | |||
| @@ -64,8 +64,8 @@ void ConfigureSystem::updateBirthdayComboBox(int birthmonth_index) { | |||
| 64 | 64 | ||
| 65 | void ConfigureSystem::refreshConsoleID() { | 65 | void ConfigureSystem::refreshConsoleID() { |
| 66 | QMessageBox::StandardButton reply; | 66 | QMessageBox::StandardButton reply; |
| 67 | QString warning_text = tr("This will replace your current virtual 3DS with a new one. " | 67 | QString warning_text = tr("This will replace your current virtual Switch with a new one. " |
| 68 | "Your current virtual 3DS will not be recoverable. " | 68 | "Your current virtual Switch will not be recoverable. " |
| 69 | "This might have unexpected effects in games. This might fail, " | 69 | "This might have unexpected effects in games. This might fail, " |
| 70 | "if you use an outdated config savegame. Continue?"); | 70 | "if you use an outdated config savegame. Continue?"); |
| 71 | reply = QMessageBox::critical(this, tr("Warning"), warning_text, | 71 | reply = QMessageBox::critical(this, tr("Warning"), warning_text, |
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 2f41de3fe..99a62c432 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -122,13 +122,13 @@ void GMainWindow::InitializeWidgets() { | |||
| 122 | 122 | ||
| 123 | emu_speed_label = new QLabel(); | 123 | emu_speed_label = new QLabel(); |
| 124 | emu_speed_label->setToolTip(tr("Current emulation speed. Values higher or lower than 100% " | 124 | emu_speed_label->setToolTip(tr("Current emulation speed. Values higher or lower than 100% " |
| 125 | "indicate emulation is running faster or slower than a 3DS.")); | 125 | "indicate emulation is running faster or slower than a Switch.")); |
| 126 | game_fps_label = new QLabel(); | 126 | game_fps_label = new QLabel(); |
| 127 | game_fps_label->setToolTip(tr("How many frames per second the game is currently displaying. " | 127 | game_fps_label->setToolTip(tr("How many frames per second the game is currently displaying. " |
| 128 | "This will vary from game to game and scene to scene.")); | 128 | "This will vary from game to game and scene to scene.")); |
| 129 | emu_frametime_label = new QLabel(); | 129 | emu_frametime_label = new QLabel(); |
| 130 | emu_frametime_label->setToolTip( | 130 | emu_frametime_label->setToolTip( |
| 131 | tr("Time taken to emulate a 3DS frame, not counting framelimiting or v-sync. For " | 131 | tr("Time taken to emulate a Switch frame, not counting framelimiting or v-sync. For " |
| 132 | "full-speed emulation this should be at most 16.67 ms.")); | 132 | "full-speed emulation this should be at most 16.67 ms.")); |
| 133 | 133 | ||
| 134 | for (auto& label : {emu_speed_label, game_fps_label, emu_frametime_label}) { | 134 | for (auto& label : {emu_speed_label, game_fps_label, emu_frametime_label}) { |
| @@ -326,7 +326,7 @@ bool GMainWindow::LoadROM(const QString& filename) { | |||
| 326 | QMessageBox::critical( | 326 | QMessageBox::critical( |
| 327 | this, tr("Error while loading ROM!"), | 327 | this, tr("Error while loading ROM!"), |
| 328 | tr("The game that you are trying to load must be decrypted before being used with " | 328 | tr("The game that you are trying to load must be decrypted before being used with " |
| 329 | "Citra. A real 3DS is required.<br/><br/>" | 329 | "yuzu. A real Switch is required.<br/><br/>" |
| 330 | "For more information on dumping and decrypting games, please see the following " | 330 | "For more information on dumping and decrypting games, please see the following " |
| 331 | "wiki pages: <ul>" | 331 | "wiki pages: <ul>" |
| 332 | "<li><a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Dumping Game " | 332 | "<li><a href='https://citra-emu.org/wiki/dumping-game-cartridges/'>Dumping Game " |
| @@ -344,7 +344,7 @@ bool GMainWindow::LoadROM(const QString& filename) { | |||
| 344 | case Core::System::ResultStatus::ErrorVideoCore: | 344 | case Core::System::ResultStatus::ErrorVideoCore: |
| 345 | QMessageBox::critical( | 345 | QMessageBox::critical( |
| 346 | this, tr("An error occured in the video core."), | 346 | this, tr("An error occured in the video core."), |
| 347 | tr("Citra has encountered an error while running the video core, please see the " | 347 | tr("yuzu has encountered an error while running the video core, please see the " |
| 348 | "log for more details." | 348 | "log for more details." |
| 349 | "For more information on accessing the log, please see the following page: " | 349 | "For more information on accessing the log, please see the following page: " |
| 350 | "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How " | 350 | "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How " |
| @@ -649,7 +649,7 @@ void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string det | |||
| 649 | default: | 649 | default: |
| 650 | answer = QMessageBox::question( | 650 | answer = QMessageBox::question( |
| 651 | this, tr("Fatal Error"), | 651 | this, tr("Fatal Error"), |
| 652 | tr("Citra has encountered a fatal error, please see the log for more details. " | 652 | tr("yuzu has encountered a fatal error, please see the log for more details. " |
| 653 | "For more information on accessing the log, please see the following page: " | 653 | "For more information on accessing the log, please see the following page: " |
| 654 | "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How to " | 654 | "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How to " |
| 655 | "Upload the Log File</a>.<br/><br/>Would you like to quit back to the game list? " | 655 | "Upload the Log File</a>.<br/><br/>Would you like to quit back to the game list? " |
| @@ -677,7 +677,7 @@ bool GMainWindow::ConfirmClose() { | |||
| 677 | return true; | 677 | return true; |
| 678 | 678 | ||
| 679 | QMessageBox::StandardButton answer = | 679 | QMessageBox::StandardButton answer = |
| 680 | QMessageBox::question(this, tr("Citra"), tr("Are you sure you want to close Citra?"), | 680 | QMessageBox::question(this, tr("yuzu"), tr("Are you sure you want to close yuzu?"), |
| 681 | QMessageBox::Yes | QMessageBox::No, QMessageBox::No); | 681 | QMessageBox::Yes | QMessageBox::No, QMessageBox::No); |
| 682 | return answer != QMessageBox::No; | 682 | return answer != QMessageBox::No; |
| 683 | } | 683 | } |
| @@ -741,7 +741,7 @@ bool GMainWindow::ConfirmChangeGame() { | |||
| 741 | return true; | 741 | return true; |
| 742 | 742 | ||
| 743 | auto answer = QMessageBox::question( | 743 | auto answer = QMessageBox::question( |
| 744 | this, tr("Citra"), | 744 | this, tr("yuzu"), |
| 745 | tr("Are you sure you want to stop the emulation? Any unsaved progress will be lost."), | 745 | tr("Are you sure you want to stop the emulation? Any unsaved progress will be lost."), |
| 746 | QMessageBox::Yes | QMessageBox::No, QMessageBox::No); | 746 | QMessageBox::Yes | QMessageBox::No, QMessageBox::No); |
| 747 | return answer != QMessageBox::No; | 747 | return answer != QMessageBox::No; |
| @@ -764,8 +764,8 @@ int main(int argc, char* argv[]) { | |||
| 764 | SCOPE_EXIT({ MicroProfileShutdown(); }); | 764 | SCOPE_EXIT({ MicroProfileShutdown(); }); |
| 765 | 765 | ||
| 766 | // Init settings params | 766 | // Init settings params |
| 767 | QCoreApplication::setOrganizationName("Citra team"); | 767 | QCoreApplication::setOrganizationName("yuzu team"); |
| 768 | QCoreApplication::setApplicationName("Citra"); | 768 | QCoreApplication::setApplicationName("yuzu"); |
| 769 | 769 | ||
| 770 | QApplication::setAttribute(Qt::AA_X11InitThreads); | 770 | QApplication::setAttribute(Qt::AA_X11InitThreads); |
| 771 | QApplication app(argc, argv); | 771 | QApplication app(argc, argv); |
diff --git a/src/yuzu/main.ui b/src/yuzu/main.ui index 234e90c3c..dde8514a5 100644 --- a/src/yuzu/main.ui +++ b/src/yuzu/main.ui | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | </rect> | 11 | </rect> |
| 12 | </property> | 12 | </property> |
| 13 | <property name="windowTitle"> | 13 | <property name="windowTitle"> |
| 14 | <string>Citra</string> | 14 | <string>yuzu</string> |
| 15 | </property> | 15 | </property> |
| 16 | <property name="windowIcon"> | 16 | <property name="windowIcon"> |
| 17 | <iconset> | 17 | <iconset> |
diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt index 802e060f4..433e210b0 100644 --- a/src/yuzu_cmd/CMakeLists.txt +++ b/src/yuzu_cmd/CMakeLists.txt | |||
| @@ -28,8 +28,8 @@ if(UNIX AND NOT APPLE) | |||
| 28 | endif() | 28 | endif() |
| 29 | 29 | ||
| 30 | if (MSVC) | 30 | if (MSVC) |
| 31 | include(CopyCitraSDLDeps) | 31 | include(CopyYuzuSDLDeps) |
| 32 | include(CopyYuzuUnicornDeps) | 32 | include(CopyYuzuUnicornDeps) |
| 33 | copy_citra_SDL_deps(yuzu-cmd) | 33 | copy_yuzu_SDL_deps(yuzu-cmd) |
| 34 | copy_yuzu_unicorn_deps(yuzu-cmd) | 34 | copy_yuzu_unicorn_deps(yuzu-cmd) |
| 35 | endif() | 35 | endif() |
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 5efbf3910..785d96672 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp | |||
| @@ -47,7 +47,7 @@ static void PrintHelp(const char* argv0) { | |||
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | static void PrintVersion() { | 49 | static void PrintVersion() { |
| 50 | std::cout << "Citra " << Common::g_scm_branch << " " << Common::g_scm_desc << std::endl; | 50 | std::cout << "yuzu " << Common::g_scm_branch << " " << Common::g_scm_desc << std::endl; |
| 51 | } | 51 | } |
| 52 | 52 | ||
| 53 | /// Application entry point | 53 | /// Application entry point |
| @@ -146,7 +146,7 @@ int main(int argc, char** argv) { | |||
| 146 | return -1; | 146 | return -1; |
| 147 | case Core::System::ResultStatus::ErrorLoader_ErrorEncrypted: | 147 | case Core::System::ResultStatus::ErrorLoader_ErrorEncrypted: |
| 148 | LOG_CRITICAL(Frontend, "The game that you are trying to load must be decrypted before " | 148 | LOG_CRITICAL(Frontend, "The game that you are trying to load must be decrypted before " |
| 149 | "being used with Citra. \n\n For more information on dumping and " | 149 | "being used with yuzu. \n\n For more information on dumping and " |
| 150 | "decrypting games, please refer to: " | 150 | "decrypting games, please refer to: " |
| 151 | "https://citra-emu.org/wiki/dumping-game-cartridges/"); | 151 | "https://citra-emu.org/wiki/dumping-game-cartridges/"); |
| 152 | return -1; | 152 | return -1; |