I only get a similar error when I play my game in Incognito mode. Are you testing your game in Incognito?
add me on discord if you want to keep in contact š¦š„#8269
This is a large part of my load code:
ini_open("settings.ini");
if (!ini_section_exists("data")){
ini_write_real("data", "init game", 1);
ini_write_real("data", "version", version);
ini_write_real("setting", "sound", 1);
global.new_game = true;
loadbar.init = true;
}else{
if (ini_read_real("data", "version", 0) != version){
show_message("WARNING: Save data is of previous version. Unfortunately, data must be reset.");
clear_user_data();
ini_close();
room_restart();
exit;
}
global.new_game = false;
loadbar.rm_next = rmMainMenu;
load_game(); //load the actual save file here
}