diff --git a/c_os/devices/BufferedCGA.h b/c_os/devices/BufferedCGA.h index 96198d4..c7aff84 100755 --- a/c_os/devices/BufferedCGA.h +++ b/c_os/devices/BufferedCGA.h @@ -6,11 +6,7 @@ #include "lib/ScrollbackBuffer.h" #include -// NOTE: I added this file, I don't know if it will be used till the end but right know it's nice to have - -// NOTE: I wanted to write to screen_buffer always and copy this to video mem to allow easier composition -// of different screen elements, but this would disable printing before initialization or I would -// have to replace print with unbuffered_print or something, which I don't like. +// NOTE: I added this file, I will probably replace this in the end by an application class BufferedCGA : public CGA { private: std::unique_ptr scrollback_buffer; // Contains previous pages