The announcement included a curious note: "Nothing is different so don't play any more unless you really really want to." Yet within hours, players discovered the chapter selection screen played no music:We are testing a new command to switch Chapters in Deltarune Chapter 1&2. If you would like to test, please see the attached images and report any issues (mainly if it doesn't work...) with this Google form.
The issues went deeper. Players found that switching chapters in fullscreen mode broke the display entirely:Why are there no creepy sounds when I first run the game 🥲
Buried in game_change's implementation is a warning about this exact issue: ```cpp "WARNING: game_change() called while in full-screen mode! This will not transition cleanly due to mode switching. Use of windowed/borderless full-screen is suggested instead." ``` Yet this warning appears nowhere in GameMaker's documentation for the function. It's unclear if it even surfaces in logs developers can access, leaving them to discover these limitations through user reports. The situation deteriorated further when Toby had to acknowledge widespread crashes:Fullscreen bug
Most telling was an unexpected change players noticed in the beta - Swatch's overworld sprite was different from the release version:Actually, it seems there may be a couple crashes, mainly in Chapter 2, due to something called a "Malformed Variable." We caught many of these before releasing, but it seems there are still some left (ex. if you give Susie the present in Ch2...)
They fixed swatch's fucked up overworld sprite. I don't care if this is the only change they made in the new build, this is all i neededThis visual change in a build that supposedly contained "no differences" suggests the beta wasn't built from the stable Chapter 2 release code at all, but from an evolved development branch. The development team seemingly couldn't even reproduce the last known-good version of Chapter 2. GameMaker's VM already has mechanisms for managing game state - the engine's `game_save()` function demonstrates this capability. Speedrunners even use it for save states. Yet instead of building on this existing functionality, game_change opts for complete process termination and restart. The technically simpler solution, chosen for its quick implementation, has led to years of technical debt. The Xbox situation particularly highlights these consequences. When Deltarune initially skipped Xbox release in 2018, game_change didn't exist. But now, its process-switching architecture has permanently cemented that platform separation. Even though Deltarune runs perfectly in Xbox development mode and contains Xbox button graphics, the game can never properly release there without fundamentally reworking its chapter management system. ## Beyond Chapter 3: The Future of Deltarune's Development The game_change situation creates ripple effects that extend far beyond just switching between chapters. By splitting Deltarune into separate GameMaker projects, each chapter becomes effectively frozen in time - a snapshot of the engine version, coding practices, and game mechanics from when it was developed. When a developer fixes a bug in Chapter 3, that fix won't automatically propagate to Chapters 1 and 2. We can already see this issue with the mercy meter, save slot system, and combat targeting mechanics - each improvement or change remains isolated in its chapter of origin. As new chapters are released, this fragmentation will only increase. Players might encounter different behavior for the same actions depending on which chapter they're in, creating an inconsistent experience that's difficult to patch. The console situation is particularly concerning. While PC users can at least test the game_change functionality through the beta branch, console versions have no testing path at all. Each console has its own process management quirks and security models. The Xbox situation exemplifies this - what started as a simple platform absence in 2018 has evolved into a permanent technical impossibility. The process-switching architecture of game_change fundamentally conflicts with Xbox's security model, meaning Deltarune can never release on the platform without completely reworking its chapter management system. This suggests a worrying pattern for future development. Each new chapter adds another independent project to maintain, another set of potential version mismatches, another opportunity for features to drift apart. The current beta's unexpected sprite changes hint at deeper version control challenges - if the development team can't easily reproduce the last stable build of Chapter 2, how will they manage coordination between five or more chapters? Game_change was meant to solve the technical challenges of a growing game, but its implementation may have inadvertently created more problems than it solved. What began as a simple function for switching between game executables has become a fundamental constraint on Deltarune's entire development and release strategy. The rush to implement the "easier" solution - taking just a couple weeks to add process switching rather than proper VM state management - has led to years of technical debt that will affect the game's development for the foreseeable future. This serves as a sobering lesson in engine development and technical planning. Sometimes the quickest solution to implement becomes the longest to live with, especially when that solution sits at the very foundation of how a game operates.