We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c545943 commit a5cb191Copy full SHA for a5cb191
prboom-go/main/main.c
@@ -534,10 +534,10 @@ void app_main()
534
.frameRate = TICRATE,
535
// Some things might be nice to place in internal RAM, but I do not have time to find such
536
// structures. So for now, prefer external RAM for most things except the framebuffer which
537
- // is allocated above.
538
- .mallocAlwaysInternal = 16,
+ // is allocated below.
+ .mallocAlwaysInternal = 1, // I want 0 but 0 will be ignored, so 1 it is!
539
.storageRequired = true,
540
- .romRequired = true,
+ .romRequired = false,
541
.handlers = {
542
.loadState = &load_state_handler,
543
.saveState = &save_state_handler,
0 commit comments