Add return to VulkanWindow::GetGraphicsDriverVendor() to suppress warning.
All checks were successful
Run ReCI Build Test / Explore-Gitea-Actions (push) Successful in 1m42s

This does need to be properly implemented, however.
This commit is contained in:
2025-06-04 04:26:40 -04:00
parent ca459af9b1
commit f3cd2b6d82

View File

@@ -239,7 +239,7 @@ void VulkanWindow::SetVsyncEnabled(bool state) {
}
std::string VulkanWindow::GetGraphicsDriverVendor() {
return "Unknown OpenGL";// TODO: Implement properly!
}
VulkanWindow::VulkanWindow(const std::string& title, int width, int height) : RWindow(title, width, height) {