dynamic buffer size for RAMTileRenderer.cpp is working

This commit is contained in:
Clément Le Bihan
2021-07-26 15:55:10 +02:00
parent 0f66bd2388
commit 87aabbfce4
9 changed files with 39 additions and 33 deletions
+1 -1
View File
@@ -118,7 +118,7 @@ namespace ComSquare::Debugger
int j = 0;
for (const auto &row : this->_ramTileRenderer.buffer) {
for (const auto &pixel : row) {
this->_renderer->putPixel(j++, i, pixel);
this->_renderer->putPixel(i, j++, pixel);
}
j = 0;
i++;