From 36a3d92e601a22ff6bb38f7e399c4289753a609f Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Tue, 29 Oct 2024 21:26:00 +0000 Subject: [PATCH] lime: Reworded missing SDL frontend error message --- src/lime/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lime/main.cpp b/src/lime/main.cpp index 6ceebf7a1..02994ef2c 100644 --- a/src/lime/main.cpp +++ b/src/lime/main.cpp @@ -36,7 +36,7 @@ int main(int argc, char* argv[]) { #if ENABLE_SDL2_FRONTEND LaunchSdlFrontend(argc, argv); #else - std::cout << "Cannot use SDL frontend as it was excluded at compile time. Exiting." + std::cout << "Cannot use SDL frontend as it was disabled at compile time. Exiting." << std::endl; return -1; #endif