===========================================================================
| 3917 | |
| 3918 | //=========================================================================== |
| 3919 | void DrawWindowBackground_Info( int g_iWindowThis ) |
| 3920 | { |
| 3921 | RECT rect; |
| 3922 | rect.top = 0; |
| 3923 | rect.left = DISPLAY_DISASM_RIGHT; |
| 3924 | rect.right = DISPLAY_WIDTH; |
| 3925 | int nTop = GetConsoleTopPixels( g_nConsoleDisplayLines - 1 ); |
| 3926 | rect.bottom = nTop; |
| 3927 | |
| 3928 | DebuggerSetColorBG( DebuggerGetColor( BG_INFO )); // COLOR_BG_DATA |
| 3929 | |
| 3930 | #if !DEBUG_FONT_NO_BACKGROUND_FILL_INFO |
| 3931 | FillRect( GetDebuggerMemDC(), &rect, g_hConsoleBrushBG ); |
| 3932 | #endif |
| 3933 | } |
| 3934 | |
| 3935 | //=========================================================================== |
| 3936 | void UpdateDisplay (Update_t bUpdate) |
no test coverage detected