From 24c346b7636dcfde70e7972b6a0da7be6fcf1116 Mon Sep 17 00:00:00 2001 From: Niellune Date: Sat, 28 Mar 2026 01:51:30 +0200 Subject: [PATCH] More info --- src/application.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/application.cpp b/src/application.cpp index 623d7b4..689de00 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -490,6 +490,10 @@ const std::string Application::status() const } out << " " << SDL_GetCurrentAudioDriver(); + out << "BACKENDS:"; + for (int i = 0; i < SDL_GetNumVideoDrivers(); ++i) + out << " " << SDL_GetVideoDriver(i); + int displayIndex = SDL_GetWindowDisplayIndex(window); if (displayIndex >= 0) {