Cgx to gfx::Bitmap pipeline in GraphicsEditor

This commit is contained in:
Justin Scofield
2023-08-01 22:02:58 -04:00
parent 952ce1e3dc
commit 09d76f5f5d
5 changed files with 126 additions and 28 deletions

View File

@@ -131,8 +131,9 @@ class ROM {
rom_data_.reserve(n_bytes);
rom_data_.resize(n_bytes);
for (int i = 0; i < n_bytes; i++) {
rom_data_[i] = 0x00;
rom_data_.push_back(0x00);
}
size_ = n_bytes;
}
uchar& operator[](int i) {