Will the rollback/abort issues ever get fixed, or will I be stuck using version 1.0.9? As I'm heavily relying on rollbacks for getting certain prompts to show properly, the fact its constantly resetting basically everything is making using newer versions impossible for me unless i make hard saves for basically every response, which is super cumbersome.
EDIT: So I think I found the cause of the issues, and how to trigger it relatively consistently. It seems to happen if you rollback a second time when the current page is less than the furthest you've been in that save. Basically, if your furthest page is page 5, roll back to 4, then roll back to 3, then sometimes (but not always) it resets to page 5 due to a negative underflow. It throws an error as described below:
Detected mismatch in old save: totalPages (3) != gameStates.length (4), using offset: -2
Basically, to me it seems that because memory isn't truly cleared when rolling back, its causing direct issues with the gameStates.length the game thinks exist. Solution could be to try actually deleting the pages that are rolled back from memory? Since technically the current behavior is also a quite severe memory leak.