mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2025-04-04 08:22:47 +00:00
- Added the new TiBook resolution of 1280x854 to the menus
This commit is contained in:
parent
d3f9102a3f
commit
ad20e432f0
2 changed files with 4 additions and 2 deletions
|
@ -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[] =
|
||||
|
|
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue