| 295 | this->setScriptOffset(dwOffset); |
| 296 | } |
| 297 | bool aithread::ret() |
| 298 | { |
| 299 | if ( this->callstack.empty() ) |
| 300 | return false; |
| 301 | |
| 302 | this->setScriptOffset( this->callstack.top() ); |
| 303 | this->callstack.pop(); |
| 304 | return true; |
| 305 | } |
| 306 | |
| 307 | void *aithread::town() |
| 308 | { |
no test coverage detected