From 75903ec2d98f82c66911c752477e997ea63566fa Mon Sep 17 00:00:00 2001 From: LRFLEW Date: Sat, 6 Jun 2015 22:35:48 -0500 Subject: [PATCH] Fixed opening save game not changing recommended name It was originally handled by load_game(), but was changed when the loadsave window was implemented. --- src/game.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game.c b/src/game.c index 7923bcff6d..87c8f1c815 100644 --- a/src/game.c +++ b/src/game.c @@ -611,6 +611,7 @@ int game_load_save(const char *path) log_verbose("loading saved game, %s", path); strcpy((char*)0x0141EF68, path); + strcpy((char*)RCT2_ADDRESS_SAVED_GAMES_PATH_2, path); file = fopen(path, "rb"); if (file == NULL) { log_error("unable to open %s", path);