Get latest return value
| 171 | const RuntimeScriptValue *GetCurrentStack() const { return _registers[SREG_SP].RValue; } |
| 172 | // Get latest return value |
| 173 | int GetReturnValue() const { return _returnValue; } |
| 174 | // FIXME: this is a hack, required for dialog script; redo this later! |
| 175 | void SetReturnValue(int val) { _returnValue = val; } |
| 176 |
no outgoing calls
no test coverage detected