1

cleanup cga

This commit is contained in:
2022-07-23 21:51:29 +02:00
parent 94cc244868
commit 226a247043
3 changed files with 33 additions and 29 deletions

View File

@ -76,7 +76,7 @@ void PIT::trigger() {
// Indicator
if (systime - this->last_indicator_refresh >= 10) {
this->indicator_pos = (this->indicator_pos + 1) % 4;
kout.show(79, 0, this->indicator[this->indicator_pos]);
CGA::show(79, 0, this->indicator[this->indicator_pos]);
this->last_indicator_refresh = systime;
}