diff options
author | lat9nq <lat9nq@gmail.com> | 2022-07-10 11:46:53 -0400 |
---|---|---|
committer | lat9nq <lat9nq@gmail.com> | 2022-07-10 12:34:34 -0400 |
commit | 568a0ac3974d837d7114e4480691b1d717451be2 (patch) | |
tree | 25cb4a1901061cb47bb933a0be799c7736b62fa5 | |
parent | 6c72b7f01109300f98a7ba6465285657f330df4c (diff) |
yuzu: Rename check_vulkan to startup_checks
-rw-r--r-- | src/yuzu/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/yuzu/main.cpp | 2 | ||||
-rw-r--r-- | src/yuzu/startup_checks.cpp (renamed from src/yuzu/check_vulkan.cpp) | 0 | ||||
-rw-r--r-- | src/yuzu/startup_checks.h (renamed from src/yuzu/check_vulkan.h) | 0 |
4 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 242867a4f..534e55355 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -30,8 +30,6 @@ add_executable(yuzu applets/qt_web_browser_scripts.h bootmanager.cpp bootmanager.h - check_vulkan.cpp - check_vulkan.h compatdb.ui compatibility_list.cpp compatibility_list.h @@ -155,6 +153,8 @@ add_executable(yuzu main.cpp main.h main.ui + startup_checks.cpp + startup_checks.h uisettings.cpp uisettings.h util/controller_navigation.cpp diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index b460020b1..64be8bf61 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -115,7 +115,6 @@ static FileSys::VirtualFile VfsDirectoryCreateFileWrapper(const FileSys::Virtual #include "video_core/shader_notify.h" #include "yuzu/about_dialog.h" #include "yuzu/bootmanager.h" -#include "yuzu/check_vulkan.h" #include "yuzu/compatdb.h" #include "yuzu/compatibility_list.h" #include "yuzu/configuration/config.h" @@ -131,6 +130,7 @@ static FileSys::VirtualFile VfsDirectoryCreateFileWrapper(const FileSys::Virtual #include "yuzu/install_dialog.h" #include "yuzu/loading_screen.h" #include "yuzu/main.h" +#include "yuzu/startup_checks.h" #include "yuzu/uisettings.h" using namespace Common::Literals; diff --git a/src/yuzu/check_vulkan.cpp b/src/yuzu/startup_checks.cpp index e6d66ab34..e6d66ab34 100644 --- a/src/yuzu/check_vulkan.cpp +++ b/src/yuzu/startup_checks.cpp diff --git a/src/yuzu/check_vulkan.h b/src/yuzu/startup_checks.h index e4ea93582..e4ea93582 100644 --- a/src/yuzu/check_vulkan.h +++ b/src/yuzu/startup_checks.h |