Warrior Angel
Member
Ok, I just got Bluescope's Custom Resolution Script and I tried to follow his instructions to change the resolution to 1024 by 768 (changing the
to
at the beginning of the script) *note - I am using the demo with just that one change.
When i open the game after making these changes, everything is fine, but when I go to hit new game I get the error -http://img460.imageshack.us/img460/7355/errorhp7.png[/IMG]
The surrounding lines are
Code:
RESOLUTION = [(320).to_f, (240).to_f]
Code:
RESOLUTION = [(1024).to_f, (768).to_f]
When i open the game after making these changes, everything is fine, but when I go to hit new game I get the error -http://img460.imageshack.us/img460/7355/errorhp7.png[/IMG]
The surrounding lines are
Code:
class Window_Message < Window_Selectable
#--------------------------------------------------------------------------
alias resolution_initialize initialize
def initialize
[B]line 241[/B] resolution_initialize
self.x = 80 *- Setup.variance
self.width = 480 *- Setup.variance
self.height = 160 *- Setup.variance
self.contents.font.name = 'Verdana'
[B]line 246[/B] self.contents.font.size = Font.default_size * -Setup.variance346
end
#--------------------------------------------------------------------------