From 568a0ac3974d837d7114e4480691b1d717451be2 Mon Sep 17 00:00:00 2001
From: lat9nq <lat9nq@gmail.com>
Date: Sun, 10 Jul 2022 11:46:53 -0400
Subject: [PATCH] yuzu: Rename check_vulkan to startup_checks

---
 src/yuzu/CMakeLists.txt                           | 4 ++--
 src/yuzu/main.cpp                                 | 2 +-
 src/yuzu/{check_vulkan.cpp => startup_checks.cpp} | 0
 src/yuzu/{check_vulkan.h => startup_checks.h}     | 0
 4 files changed, 3 insertions(+), 3 deletions(-)
 rename src/yuzu/{check_vulkan.cpp => startup_checks.cpp} (100%)
 rename src/yuzu/{check_vulkan.h => startup_checks.h} (100%)

diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt
index 242867a4f0..534e553550 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 b460020b16..64be8bf614 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
similarity index 100%
rename from src/yuzu/check_vulkan.cpp
rename to src/yuzu/startup_checks.cpp
diff --git a/src/yuzu/check_vulkan.h b/src/yuzu/startup_checks.h
similarity index 100%
rename from src/yuzu/check_vulkan.h
rename to src/yuzu/startup_checks.h