Calling RGSS functions that expect zero arguments with one or more arguments should raise error #75
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#75
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?
Most wrapper functions use
rb_get_args
which handles this already, but this is never used in 0 argument functions (eg.Graphics.freeze
).binding-util.h in MRI has a handy
rb_check_argc
helper ready.