===========================================================================
| 1975 | |
| 1976 | //=========================================================================== |
| 1977 | void NTSC_SetVideoTextMode( int cols ) |
| 1978 | { |
| 1979 | if (GetVideo().GetVideoType() == VT_COLOR_VIDEOCARD_RGB) |
| 1980 | { |
| 1981 | if (cols == 40) |
| 1982 | g_pFuncUpdateTextScreen = updateScreenText40RGB; |
| 1983 | else |
| 1984 | g_pFuncUpdateTextScreen = updateScreenText80RGB; |
| 1985 | } |
| 1986 | else |
| 1987 | { |
| 1988 | if (cols == 40) |
| 1989 | g_pFuncUpdateTextScreen = updateScreenText40; |
| 1990 | else |
| 1991 | g_pFuncUpdateTextScreen = updateScreenText80; |
| 1992 | } |
| 1993 | } |
| 1994 | |
| 1995 | //=========================================================================== |
| 1996 | void NTSC_SetVideoMode( uint32_t uVideoModeFlags, bool bDelay/*=false*/ ) |
no test coverage detected