aboutsummaryrefslogtreecommitdiffstats
path: root/src/de/mud/terminal
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/mud/terminal')
-rw-r--r--src/de/mud/terminal/vt320.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/de/mud/terminal/vt320.java b/src/de/mud/terminal/vt320.java
index e06915b..ef9665b 100644
--- a/src/de/mud/terminal/vt320.java
+++ b/src/de/mud/terminal/vt320.java
@@ -2614,6 +2614,9 @@ public abstract class vt320 extends VDUBuffer implements VDUInput {
attributes |= LOW;
}
break;
+ case 3: /* italics */
+ attributes |= INVERT;
+ break;
case 4:
attributes |= UNDERLINE;
break;
@@ -2641,6 +2644,9 @@ public abstract class vt320 extends VDUBuffer implements VDUInput {
case 21: /* normal intensity */
attributes &= ~(LOW | BOLD);
break;
+ case 23: /* italics off */
+ attributes &= ~INVERT;
+ break;
case 25: /* blinking off */
break;
case 27: