
Disabling the Window Cursor script stops the crash from happening.
Is this something that can be fixed?
I can send a demo if needed.
#==============================================================================# ** Window_Selectable#------------------------------------------------------------------------------# This window class contains cursor movement and scroll functions.#============================================================================== class Window_Selectable < Window_Base #-------------------------------------------------------------------------- # new method: update_custom_cursor #-------------------------------------------------------------------------- def update_custom_cursor # If Custom Cursor is not nil or disposed if !@custom_cursor.nil? and !@custom_cursor.disposed? # Update Custom Cursor @custom_cursor.update if @custom_cursor end endend #==============================================================================# ** Window_SaveFile#------------------------------------------------------------------------------# This window displays save files on the save and load screens.#============================================================================== class Window_SaveFile < Window_Base #-------------------------------------------------------------------------- # new method: update_custom_cursor #-------------------------------------------------------------------------- def update_custom_cursor # If Custom Cursor is not nil or disposed if !@custom_cursor.nil? and !@custom_cursor.disposed? # Update Custom Cursor @custom_cursor.update if @custom_cursor end end end