Crash fix

This commit is contained in:
dazedanon 2025-12-18 10:56:21 -06:00
parent 6970b28540
commit 81e36d1b02
2 changed files with 4 additions and 1 deletions

View file

@ -137,6 +137,9 @@
const param = PluginManagerEx.createParameter(script);
function findIconCaptionParam(iconIndex) {
if (!param.list || !Array.isArray(param.list)) {
return null;
}
return param.list.find(desc => desc.iconIndex === iconIndex);
}

View file

@ -1,7 +1,7 @@
{
"name": "rmmz-game",
"main": "index.html",
"chromium-args": "--force-color-profile=srgb --disable-devtools",
"chromium-args": "--force-color-profile=srgb",
"window": {
"title": "Unholy maiden Ver.1.0.4",
"width": 1280,