reenable bufferedcga
This commit is contained in:
@ -34,6 +34,8 @@ public:
|
|||||||
|
|
||||||
// NOTE: I added this (changed this) to use BufferedCGA
|
// NOTE: I added this (changed this) to use BufferedCGA
|
||||||
class CGA_Stream : public OutStream, public BufferedCGA {
|
class CGA_Stream : public OutStream, public BufferedCGA {
|
||||||
|
// class CGA_Stream : public OutStream, public CGA {
|
||||||
|
|
||||||
private:
|
private:
|
||||||
CGA_Stream(CGA_Stream& copy); // Verhindere Kopieren
|
CGA_Stream(CGA_Stream& copy); // Verhindere Kopieren
|
||||||
|
|
||||||
@ -43,6 +45,7 @@ public:
|
|||||||
bool blink;
|
bool blink;
|
||||||
|
|
||||||
CGA_Stream() : OutStream(), BufferedCGA() {
|
CGA_Stream() : OutStream(), BufferedCGA() {
|
||||||
|
// CGA_Stream() : OutStream(), CGA() {
|
||||||
color_fg = CGA::LIGHT_GREY;
|
color_fg = CGA::LIGHT_GREY;
|
||||||
color_bg = CGA::BLACK;
|
color_bg = CGA::BLACK;
|
||||||
blink = false;
|
blink = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user