===========================================================================
| 816 | |
| 817 | //=========================================================================== |
| 818 | bool CanDrawDebugger() |
| 819 | { |
| 820 | if (DebugGetVideoMode(NULL)) |
| 821 | return false; |
| 822 | |
| 823 | if ((g_nAppMode == MODE_DEBUG) || (g_nAppMode == MODE_STEPPING)) |
| 824 | return true; |
| 825 | |
| 826 | return false; |
| 827 | } |
| 828 | |
| 829 | |
| 830 | //=========================================================================== |
no test coverage detected