===========================================================================
| 7602 | |
| 7603 | //=========================================================================== |
| 7604 | void WindowUpdateDisasmSize () |
| 7605 | { |
| 7606 | if (g_aWindowConfig[ g_iWindowThis ].bSplit) |
| 7607 | { |
| 7608 | g_nDisasmWinHeight = (MAX_DISPLAY_LINES - g_nConsoleDisplayLines) / 2; |
| 7609 | } |
| 7610 | else |
| 7611 | { |
| 7612 | g_nDisasmWinHeight = MAX_DISPLAY_LINES - g_nConsoleDisplayLines; |
| 7613 | } |
| 7614 | g_nDisasmCurLine = MAX(0, (g_nDisasmWinHeight - 1) / 2); |
| 7615 | #if _DEBUG |
| 7616 | #endif |
| 7617 | } |
| 7618 | |
| 7619 | //=========================================================================== |
| 7620 | void WindowUpdateSizes () |
no outgoing calls
no test coverage detected