uncomment necessary memory management

This commit is contained in:
Justin Scofield
2022-07-10 15:24:07 -04:00
parent 4911f0c551
commit 1e7b986adb

View File

@@ -20,7 +20,7 @@ namespace app {
void ROM::Close() {
if (is_loaded_) {
// delete[] current_rom_;
delete[] current_rom_;
for (auto &each : converted_graphic_sheets_) {
free(each);
}