- Added the new 17" Powerbook G4 resolution.

This commit is contained in:
Jamie Wilkinson 2003-01-21 15:49:39 +00:00
parent 899d768c68
commit d70da96ab7
2 changed files with 3 additions and 1 deletions

View file

@ -238,6 +238,7 @@ void VID_MenuInit( void )
"[1024 480 ]", /* sony vaio pocketbook */ "[1024 480 ]", /* sony vaio pocketbook */
"[1152 768 ]", /* apple tibook */ "[1152 768 ]", /* apple tibook */
"[1280 854 ]", /* apple tibook */ "[1280 854 ]", /* apple tibook */
"[1440 900 ]", /* apple powerbook g4 17" */
0 0
}; };
static const char *refs[] = static const char *refs[] =

View file

@ -166,7 +166,8 @@ vidmode_t vid_modes[] = {
{ "Mode 10: 2048x1536", 2048, 1536, 10 }, { "Mode 10: 2048x1536", 2048, 1536, 10 },
{ "Mode 11: 1024x480", 1024, 480, 11 }, /* Sony VAIO Pocketbook */ { "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 */ { "Mode 13: 1280x854", 1280, 854, 13 }, /* Apple TiBook */
{ "Mode 14: 1440x900", 1440, 900, 14 } /* Apple 17" Powerbook G4 */
}; };
qboolean VID_GetModeInfo( unsigned int *width, unsigned int *height, int mode ) qboolean VID_GetModeInfo( unsigned int *width, unsigned int *height, int mode )