===========================================================================
| 890 | |
| 891 | //=========================================================================== |
| 892 | INLINE uint16_t getVideoScannerAddressTXTorHGR() |
| 893 | { |
| 894 | const bool isTextAddr = ((g_nVideoMixed && g_nVideoClockVert >= VIDEO_SCANNER_Y_MIXED) || |
| 895 | (g_uNewVideoModeFlags & VF_TEXT) || |
| 896 | !(g_uNewVideoModeFlags & VF_HIRES)); |
| 897 | |
| 898 | if (isTextAddr) |
| 899 | return getVideoScannerAddressTXT(); |
| 900 | else |
| 901 | return getVideoScannerAddressHGR(); |
| 902 | } |
| 903 | |
| 904 | //=========================================================================== |
| 905 | INLINE uint16_t getVideoScannerAddressSHR() |
no test coverage detected