#================================================================================= # ==[Force 640x480 Resolution Script]== # # - Forces 640x480 display resolution via Scene_Title's start method. # - If you want to do it in a pre-title scene, simply copy the resize_screen # command to the start method of your pre-title scene. #--------------------------------------------------------------------------------- # ALIASED or OVERWRITTEN METHODS: # # * Aliased: Scene_Title start method # * No Overwritten methods # #-------------------------------------------------------------------------------- # OTHER DEFAULT SCRIPT ADDITIONS/TWEAKS: # # * No other additions/tweaks # #-------------------------------------------------------------------------------- # ==[LEGAL CRAP]== # - You may modify this script as you see fit # - You may use this script freely in any commercial or free game # - Due to the simplicity of the script, you are not required to credit the author # if you use it in any of your games. Credit is nice, but not required. # # Script Authored by: Matt Sully aka "Gump" #================================================================================ class Scene_Title < Scene_Base alias start_and_force_640 start unless $@ def start Graphics.resize_screen(640, 480) start_and_force_640 end end