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) {