Lode Runner v2.30e, AI_VERSION=4

The major change is adding a backup and restore feature for "custom levels".
Cette révision appartient à :
simon_hung
2025-03-26 22:30:17 +08:00
Parent f1a67fb54a
révision 24a7cc1749
23 fichiers modifiés avec 2194 ajouts et 206 suppressions
+4 -4
Voir le fichier
@@ -126,7 +126,7 @@ function infoMenu(callbackFun, args)
if(infoMsg) infoObj.showInfo(infoMsg, callbackFun, args);
else {
if(callbackFun) callbackFun(args);
error(arguments.callee.name, "Error: playMode = " + playMode);
error("Error: playMode = " + playMode);
}
}
@@ -278,7 +278,7 @@ function infoMenuClass(_stage, _scale)
menuY += (infoObj[i].textHeight * 3/2|0);
break;
default:
error(arguments.callee.name, "Error: type don't support, type = " + infoList[i].type);
error("Error: type don't support, type = " + infoList[i].type);
continue;
}
if(maxTextWidth < infoObj[i].width) maxTextWidth = infoObj[i].width;
@@ -373,7 +373,7 @@ function infoMenuClass(_stage, _scale)
_stage.addChild(infoObj[i].textLink);
break;
default:
error(arguments.callee.name, "Error: type don't support, type = " + infoObj[i].type);
error("Error: type don't support, type = " + infoObj[i].type);
continue;
}
}
@@ -396,7 +396,7 @@ function infoMenuClass(_stage, _scale)
_stage.removeChild(infoObj[i].textLink);
break;
default:
error(arguments.callee.name, "Error: type don't support, type = " + infoObj[i].type);
error("Error: type don't support, type = " + infoObj[i].type);
continue;
}
}