Skip to content

Commit

Permalink
Merge branch 'release' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
tmewett committed Jun 20, 2021
2 parents e9ad0f3 + 77a8500 commit 419fb97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changes/game-recording-considered-stable.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
After fixing the known remaining out-of-sync errors, game saving and recording playback are now considered stable.
2 changes: 1 addition & 1 deletion src/brogue/IO.c
Original file line number Diff line number Diff line change
Expand Up @@ -2673,7 +2673,7 @@ void executeKeystroke(signed long keystroke, boolean controlKey, boolean shiftKe
if (rogue.playbackMode || serverMode) {
return;
}
if (confirm("Suspend this game? (This feature is still in beta.)", false)) {
if (confirm("Suspend this game?", false)) {
saveGame();
}
break;
Expand Down
2 changes: 1 addition & 1 deletion src/brogue/Recordings.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ unsigned long recallNumber(short numberOfBytes) {

#define OOS_APOLOGY "Playback of the recording has diverged from the originally recorded game.\n\n\
This could be caused by recording or playing the file on a modified version of Brogue, or it could \
simply be the result of a bug. (The recording feature is still in beta for this reason.)\n\n\
simply be the result of a bug.\n\n\
If this is a different computer from the one on which the recording was saved, the recording \
might succeed on the original computer."

Expand Down

0 comments on commit 419fb97

Please sign in to comment.