sm64coopdx/docs
Cooliokid956 cda0fa648b Fix double bubble life loss
- Borrowed certain things from HackerSM64/later refreshes
  - lots of `enum`s!
    - `MenuOption` [NEW]
    - `TimerControl`
    - `WarpOperation`
    - `WarpFlags` [NEW]
    - `WarpNodes`
    - `WarpTypes`
  - names here and there

NEW Level Value: `pauseExitMode`
- Learn:
```c
enum PauseExitMode {
    PAUSE_EXIT_VANILLA,   // 0b00 // "EXIT COURSE"    exits to castle
    PAUSE_EXIT_COURSE,    // 0b01 // "EXIT COURSE"    exits the course
    PAUSE_EXIT_TO_CASTLE, // 0b10 // "EXIT TO CASTLE" exits to castle
    PAUSE_EXIT_BOTH       // 0b11 // "EXIT COURSE" and "EXIT TO CASTLE"
};
```

- Deduplicated `Painting`s
  - Defaults are now created/restored using Macros
- Killed so many unused variables
- Purged all references to the sm64ex Exit Game feature
  - like that's ever coming back
- Getting things ready for the return of Goddard

... - oh, bubbles!
- Fixed double life loss on timeout
- :)
2026-06-13 00:14:27 -05:00
..
c Add in C documentation (#1176) 2026-04-21 21:35:01 -04:00
lua Fix double bubble life loss 2026-06-13 00:14:27 -05:00