- Added the new TiBook resolution of 1280x854 to the menus

This commit is contained in:
Jamie Wilkinson 2002-05-26 06:41:05 +00:00
parent d3f9102a3f
commit ad20e432f0
2 changed files with 4 additions and 2 deletions

View file

@ -236,7 +236,8 @@ void VID_MenuInit( void )
"[1600 1200]",
"[2048 1536]", /* irix/vid_menu.c -- jaq */
"[1024 480 ]", /* sony vaio pocketbook */
"[1152 768 ]", /* applie tibook */
"[1152 768 ]", /* apple tibook */
"[1280 854 ]", /* apple tibook */
0
};
static const char *refs[] =

View file

@ -181,7 +181,8 @@ vidmode_t vid_modes[] =
{ "Mode 9: 1600x1200", 1600, 1200, 9 },
{ "Mode 10: 2048x1536", 2048, 1536, 10 },
{ "Mode 11: 1024x480", 1024, 480, 11 }, /* Sony VAIO Pocketbook */
{ "Mode 12: 1152x768", 1152, 768, 12 } /* Apple TiBook */
{ "Mode 12: 1152x768", 1152, 768, 12 }, /* Apple TiBook */
{ "Mode 13: 1280x854", 1280, 854, 13 } /* Apple TiBook */
};
qboolean VID_GetModeInfo( unsigned int *width, unsigned int *height, int mode )