Skip to content

Commit c753539

Browse files
authored
Merge pull request rpgtkoolmv#145 from Sigureya/Window_OptionBranch
drawItem()の修正
2 parents b537ade + 44150fa commit c753539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/rpg_windows/Window_Options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Window_Options.prototype.drawItem = function(index) {
5252
this.resetTextColor();
5353
this.changePaintOpacity(this.isCommandEnabled(index));
5454
this.drawText(this.commandName(index), rect.x, rect.y, titleWidth, 'left');
55-
this.drawText(this.statusText(index), titleWidth, rect.y, statusWidth, 'right');
55+
this.drawText(this.statusText(index), rect.x+titleWidth, rect.y, statusWidth, 'right');
5656
};
5757

5858
Window_Options.prototype.statusWidth = function() {

0 commit comments

Comments
 (0)