#=============================================================================== # This script should address the F12 crash problem with # Shaz's Super Simple Mouse System. Place this script below the mouse script #=============================================================================== class Sprite_Mouse alias :th_mouse_crashing_fix_update :update def update if disposed? $mouse = Sprite_Mouse.new else th_mouse_crashing_fix_update end end end