This commit is contained in:
Clément Le Bihan
2021-06-23 22:02:12 +02:00
parent 4de2d61aaa
commit 6c1fc61a28
9 changed files with 38 additions and 47 deletions
@@ -33,7 +33,7 @@ namespace ComSquare::Debugger
int bufY = 0;
int nbTilesDrawn = 0;
int resetX = bufX;
for (auto &i : buffer)
for (auto &i : this->buffer)
i.fill(0);
uint24_t limit = fmin(this->_ram->getSize(), this->_renderSize) + this->_ramOffset;
+1 -2
View File
@@ -142,8 +142,7 @@ namespace ComSquare::Debugger
case 1: return this->setBpp(4);
case 2: return this->setBpp(8);
default:
break;
throw std::runtime_error("Invalid Index");
}
// TODO error handling
}
}