You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
110: Value of the variable set after passing its pointer. 0 if not set.
See these two examples:
0AB1: cleo_call @setVar 1 110~0@
0AB1: cleo_call @setVar 1 ~0@
They would be expanded to these before compilation:
1. 0AC7: 0@ = var 0@ pointer 0AB1: cleo_call @setVar 1 0@ 0@ = 110
2. 0AC7: 0@ = var 0@ pointer 0AB1: cleo_call @setVar 1 0@ 0@ = 0
The text was updated successfully, but these errors were encountered:
IDK if this called 'inline' or not.
See this code:
0AB1: cleo_call @setVar 1 110~0@
The two new values:
~
: Indicator to inline this variable's pointer.110
: Value of the variable set after passing its pointer. 0 if not set.See these two examples:
0AB1: cleo_call @setVar 1 110~0@
0AB1: cleo_call @setVar 1 ~0@
They would be expanded to these before compilation:
1.
0AC7: 0@ = var 0@ pointer
0AB1: cleo_call @setVar 1 0@
0@ = 110
2.
0AC7: 0@ = var 0@ pointer
0AB1: cleo_call @setVar 1 0@
0@ = 0
The text was updated successfully, but these errors were encountered: