Default filename argument to Graphics.transition() should be "", not nil #108
Labels
No Label
RGSS accuracy
bug
compilation
discussion
documentation
duplicate
enhancement
invalid
performance issue
port request
question
ruby incompatibility
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: MapleShrine/mkxp#108
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The second argument to Graphics.transition() should default to "", not nil. (This represents using the default shader.) Currently, if someone wants to call Graphics.transition(8, "", 100), the "" will cause mkxp to try to load a Bitmap named "", rather than defaulting to the default shader. (Using nil instead of "" will work in MKXP, but not RPG Maker.)
Suggest changing line 719 of graphics.cpp:
I don't think using nil should have worked in mkxp because it will still try to parse it as a string from the ruby side.
Makes sense, thanks.