Fix main menu cursor cutout

This commit is contained in:
OleSTEEP 2024-01-03 04:24:46 +03:00
parent 30e8bef4a1
commit 712bda02f4
4 changed files with 6 additions and 732 deletions

View file

@ -598,7 +598,12 @@ Scene_OmoriTitleScreen.prototype.start = function () {
this._lightBulbLinesSprite.opacity = 255;
for (var i = 0; i < this._titleCommands.length; i++) {
var win = this._titleCommands[i];
var patch = 40;
win.y = (Graphics.height - win.height) - 15;
win.x = win.x - patch;
win.width = win.width + patch;
win.pivot.x = win.pivot.x - patch;
win.children[0].width = win.children[0].width - patch;
win.opacity = 255;
win.contentsOpacity = 255;
};