aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_function.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-09-25Use computed goto to dispatch next opcodeHein-Pieter van Braam1-109/+183
On compulers that define __GNUC__ use computed goto to directly dispatch the next instruction rather than going through another switch statement. This saves a jump and some comparisons. In tight loops this is is roughly 10% faster than the switch() method.
2017-09-24Fix typo in fixed-fps help lineHein-Pieter van Braam1-1/+1
2017-09-24Fix Variant::get_named return when p_index is invalidMarcelo Fernandez1-0/+1
2017-09-24Fix Dictionary set_namedHein-Pieter van Braam1-1/+1
Reduz optimized field indexing in 3c85703 but the changes didn't apply to dictionary so this code remained untouched. However, the logic for validity checking was changed but not updated for the dictionary case.
2017-09-24Dist: Fix typos in manpageRémi Verschelde1-2/+2
[ci skip]
2017-09-24Dist: Use HTTPS for screenshot link in AppData fileRémi Verschelde2-5/+5
[ci skip]