From 80db02c49789b73f10169bc398e51726e51b139e Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sat, 13 Jan 2018 23:49:16 +0000 Subject: Minor cleanup --- src/yuzu_cmd/CMakeLists.txt | 4 ++-- src/yuzu_cmd/yuzu.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/yuzu_cmd') 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) endif() if (MSVC) - include(CopyCitraSDLDeps) + include(CopyYuzuSDLDeps) include(CopyYuzuUnicornDeps) - copy_citra_SDL_deps(yuzu-cmd) + copy_yuzu_SDL_deps(yuzu-cmd) copy_yuzu_unicorn_deps(yuzu-cmd) 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) { } static void PrintVersion() { - std::cout << "Citra " << Common::g_scm_branch << " " << Common::g_scm_desc << std::endl; + std::cout << "yuzu " << Common::g_scm_branch << " " << Common::g_scm_desc << std::endl; } /// Application entry point @@ -146,7 +146,7 @@ int main(int argc, char** argv) { return -1; case Core::System::ResultStatus::ErrorLoader_ErrorEncrypted: LOG_CRITICAL(Frontend, "The game that you are trying to load must be decrypted before " - "being used with Citra. \n\n For more information on dumping and " + "being used with yuzu. \n\n For more information on dumping and " "decrypting games, please refer to: " "https://citra-emu.org/wiki/dumping-game-cartridges/"); return -1; -- cgit v1.2.3