Not work on web browser, too. And I found the problem.
in rpg_manager line 260
DataManager.isThisGameFile = function(savefileId) {
var globalInfo = this.loadGlobalInfo();
if (globalInfo && globalInfo[savefileId]) {
if (StorageManager.isLocalMode()) {
return true;
} else {
var savefile = globalInfo[savefileId];
return (savefile.globalId === this._globalId &&
savefile.title === $dataSystem.gameTitle);
}
} else {
return false;
}
};
So we can see the problem is when the game play on web (and maybe mobile too), It will compare the title from the save file and current title of game. If they're different, the game saved file will be considered as not a game saved file. This thing is really suck when we want to custom save title for our game. Hope you will fix it
@Tsukihime