Hi, sorry to say I can reproduce the problem in the updated demo too. If I freshly unpack it wit 7zip, start the game, choose New Game, and at the first time Config is available enter the Config screen and then back out without changing anything at all then it will freeze as before. Exiting the program and restarting it allows it to go further.
Going in and out of the Config screen changes the file WG_Game_sf.sav
and it more than doubles in size (still only a few hundred bytes), picking up some information about plugins. The file seems to be URL encoded JSON data. I’m not sure if this will help, but (after running through a url decoder and then a JSON pretty print) it changes from:
{
"system": {
"autosave": false
},
"cg_view": {},
"replay_view": {},
"cg_id": {},
"replay_id": {},
"_tb_cg_noimage": "noimage.png",
"_tb_replay_noimage": "noimage.png"
}
To this:
{
"system": {
"autosave": false
},
"cg_view": {},
"replay_view": {},
"cg_id": {},
"replay_id": {},
"_tb_cg_noimage": "noimage.png",
"_tb_replay_noimage": "noimage.png",
"record": {
"trail_othersplugintheme_kopanda_09_2config_config_page": 1,
"trail_othersplugintheme_kopanda_09_2config_load_bgm_img": 1,
"trail_othersplugintheme_kopanda_09_2config_load_se_img": 1,
"trail_othersplugintheme_kopanda_09_2config_load_ch_img": 1,
"trail_othersplugintheme_kopanda_09_2config_load_auto_img": 1,
"trail_othersplugintheme_kopanda_09_2config_load_skip_img": 1
}
}
Maybe that will make more sense to you as to what those extra lines mean? I’m wondering it a simple bodge would be to include the larger version of this file in the .zip instead of the smaller one?
I also noted that exiting the game, deleting this file, and restarting it caused the “fresh install” freeze behaviour to occur once more.