Skip to content

Commit a5cb191

Browse files
committed
DOOM: Set romRequired to false
1 parent c545943 commit a5cb191

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

prboom-go/main/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -534,10 +534,10 @@ void app_main()
534534
.frameRate = TICRATE,
535535
// Some things might be nice to place in internal RAM, but I do not have time to find such
536536
// structures. So for now, prefer external RAM for most things except the framebuffer which
537-
// is allocated above.
538-
.mallocAlwaysInternal = 16,
537+
// is allocated below.
538+
.mallocAlwaysInternal = 1, // I want 0 but 0 will be ignored, so 1 it is!
539539
.storageRequired = true,
540-
.romRequired = true,
540+
.romRequired = false,
541541
.handlers = {
542542
.loadState = &load_state_handler,
543543
.saveState = &save_state_handler,

0 commit comments

Comments
 (0)