| 1902 | } |
| 1903 | |
| 1904 | bool idGameEditExt::CheckForBreakPointHit(const idInterpreter* interpreter, const function_t* function1, const function_t* function2, int depth) const |
| 1905 | { |
| 1906 | return ( ( interpreter->GetCurrentFunction ( ) == function1 || |
| 1907 | interpreter->GetCurrentFunction ( ) == function2)&& |
| 1908 | ( interpreter->GetCallstackDepth ( ) <= depth) ); |
| 1909 | } |
| 1910 | |
| 1911 | bool idGameEditExt::ReturnedFromFunction(const idProgram* program, const idInterpreter* interpreter, int index) const |
| 1912 | { |
no test coverage detected