diff options
| author | 2018-01-13 23:49:16 +0000 | |
|---|---|---|
| committer | 2018-01-13 23:56:18 +0000 | |
| commit | 80db02c49789b73f10169bc398e51726e51b139e (patch) | |
| tree | 3561f5de6afbf8b3de4b167f8e4cccd60fc53db6 /src/yuzu_cmd | |
| parent | macOS: Update Info.plist (diff) | |
| download | yuzu-80db02c49789b73f10169bc398e51726e51b139e.tar.gz yuzu-80db02c49789b73f10169bc398e51726e51b139e.tar.xz yuzu-80db02c49789b73f10169bc398e51726e51b139e.zip | |
Minor cleanup
Diffstat (limited to 'src/yuzu_cmd')
| -rw-r--r-- | src/yuzu_cmd/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
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; |