mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-21 14:29:55 +00:00
Fixing issue where last option wasn't being redrawn on lang switch
silly hard-coded array limits
This commit is contained in:
parent
3ee6bf7356
commit
611aadf92d
1 changed files with 1 additions and 1 deletions
|
|
@ -226,7 +226,7 @@ class Window_Settings
|
|||
@title.bitmap.draw_text(0, 0, @title.bitmap.width, @title.bitmap.height, tr("Settings"))
|
||||
@version.bitmap.clear
|
||||
@version.bitmap.draw_text(0, 0, @version.bitmap.width, @version.bitmap.height, tr("POT_VERSION"))
|
||||
for i in 0..7
|
||||
for i in 0..(@data_sprites.length - 1)
|
||||
redraw_setting_index(i)
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue