Skip to content

Commit 728fb9c

Browse files
committed
fix(zc): prevent replay save from happening on title screen
1 parent 507ab28 commit 728fb9c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/zc/title.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1480,11 +1480,8 @@ void titlescreen(int32_t lsave)
14801480
saves_unload(saves_current_selection());
14811481
}
14821482

1483-
if (replay_get_mode() == ReplayMode::Record)
1484-
{
1485-
replay_save();
1486-
replay_stop();
1487-
}
1483+
if (replay_is_active())
1484+
replay_quit();
14881485

14891486
if(!Quit)
14901487
{

0 commit comments

Comments
 (0)