Okay, so I just made a map on a new project, and, when I clicked 'new game', this error came up:
So I checked 'main', and this came up
What should I do?
So I checked 'main', and this came up
Code:
#==============================================================================
# ** Main
#------------------------------------------------------------------------------
# After defining each class, actual processing begins here.
#==============================================================================
begin
Graphics.freeze
$scene = Scene_Title.new
$scene.main while $scene != nil
Graphics.transition(30)
rescue Errno::ENOENT
filename = $!.message.sub("No such file or directory - ", "")
print("Unable to find file #{filename}.")
end
What should I do?