Crash fix
This commit is contained in:
parent
6970b28540
commit
81e36d1b02
2 changed files with 4 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue