From 6f3c6fa91fcd39a2e9abf531ad277770d02cae16 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Mon, 23 May 2022 09:10:53 +0200 Subject: [PATCH] reenable bufferedcga --- c_os/devices/CGA_Stream.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/c_os/devices/CGA_Stream.h b/c_os/devices/CGA_Stream.h index 77b6e0c..f3f5873 100755 --- a/c_os/devices/CGA_Stream.h +++ b/c_os/devices/CGA_Stream.h @@ -34,6 +34,8 @@ public: // NOTE: I added this (changed this) to use BufferedCGA class CGA_Stream : public OutStream, public BufferedCGA { + // class CGA_Stream : public OutStream, public CGA { + private: CGA_Stream(CGA_Stream& copy); // Verhindere Kopieren @@ -43,6 +45,7 @@ public: bool blink; CGA_Stream() : OutStream(), BufferedCGA() { + // CGA_Stream() : OutStream(), CGA() { color_fg = CGA::LIGHT_GREY; color_bg = CGA::BLACK; blink = false;