mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 05:32:24 +00:00
- Added the new 17" Powerbook G4 resolution.
This commit is contained in:
parent
899d768c68
commit
d70da96ab7
2 changed files with 3 additions and 1 deletions
|
@ -238,6 +238,7 @@ void VID_MenuInit( void )
|
|||
"[1024 480 ]", /* sony vaio pocketbook */
|
||||
"[1152 768 ]", /* apple tibook */
|
||||
"[1280 854 ]", /* apple tibook */
|
||||
"[1440 900 ]", /* apple powerbook g4 17" */
|
||||
0
|
||||
};
|
||||
static const char *refs[] =
|
||||
|
|
|
@ -166,7 +166,8 @@ vidmode_t vid_modes[] = {
|
|||
{ "Mode 10: 2048x1536", 2048, 1536, 10 },
|
||||
{ "Mode 11: 1024x480", 1024, 480, 11 }, /* Sony VAIO Pocketbook */
|
||||
{ "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 )
|
||||
|
|
Loading…
Reference in a new issue