lime: Reworded missing SDL frontend error message

This commit is contained in:
OpenSauce04 2024-10-29 21:26:00 +00:00
parent ff98896782
commit 36a3d92e60

View File

@ -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