aboutsummaryrefslogtreecommitdiff
path: root/engines/adl/display.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/adl/display.cpp')
-rw-r--r--engines/adl/display.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/adl/display.cpp b/engines/adl/display.cpp
index e18de6adae..c630d034c9 100644
--- a/engines/adl/display.cpp
+++ b/engines/adl/display.cpp
@@ -33,6 +33,7 @@
#include "engines/util.h"
#include "adl/display.h"
+#include "adl/adl.h"
namespace Adl {
@@ -294,7 +295,10 @@ void Display::moveCursorTo(const Common::Point &pos) {
void Display::printChar(char c) {
if (c == APPLECHAR('\r'))
_cursorPos = (_cursorPos / TEXT_WIDTH + 1) * TEXT_WIDTH;
- else if ((byte)c < 0x80 || (byte)c >= 0xa0) {
+ else if (c == APPLECHAR('\a')) {
+ updateTextScreen();
+ static_cast<AdlEngine *>(g_engine)->bell();
+ } else if ((byte)c < 0x80 || (byte)c >= 0xa0) {
setCharAtCursor(c);
++_cursorPos;
}