aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backends/modular-backend.cpp5
-rw-r--r--common/system.h5
2 files changed, 3 insertions, 7 deletions
diff --git a/backends/modular-backend.cpp b/backends/modular-backend.cpp
index 8067c31323..df3d631007 100644
--- a/backends/modular-backend.cpp
+++ b/backends/modular-backend.cpp
@@ -264,12 +264,7 @@ AudioCDManager *ModularBackend::getAudioCDManager() {
}
void ModularBackend::displayMessageOnOSD(const char *msg) {
-#ifdef USE_OSD
_graphicsManager->displayMessageOnOSD(msg);
-#else
- GUI::TimedMessageDialog dialog(msg, 1500);
- dialog.runModal();
-#endif
}
Common::SaveFileManager *ModularBackend::getSavefileManager() {
diff --git a/common/system.h b/common/system.h
index 54c6fa8df7..97fe582813 100644
--- a/common/system.h
+++ b/common/system.h
@@ -987,8 +987,9 @@ public:
*
* Currently, only pure ASCII messages can be expected to show correctly.
*
- * @note There is a default implementation which uses a TimedMessageDialog
- * to display the message. Hence implementing this is optional.
+ * @note There is a default implementation in BaseBackend which uses a
+ * TimedMessageDialog to display the message. Hence implementing
+ * this is optional.
*
* @param msg the message to display on screen
*/