mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 06:41:58 +00:00
Change to multiplayer menu message
also disabled the "specify" button as it is useless in this port
This commit is contained in:
parent
d9db6a2076
commit
c01c8b3484
1 changed files with 8 additions and 5 deletions
|
@ -160,7 +160,7 @@ static char* netnames[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
static char quake3questMessage[] = "Visit quake3.quakevr.com - For the Team Beef Discord invite for news/events/chat";
|
||||
static char quake3questMessage[] = "Meetups: 21h CET (EU) / 9pm EST (USA). stats.quakevr.com for server status.";
|
||||
|
||||
const char* punkbuster_items[] = {
|
||||
"Disabled",
|
||||
|
@ -490,6 +490,9 @@ static void ArenaServers_UpdateMenu( void ) {
|
|||
g_arenaservers.punkbuster.generic.flags &= ~QMF_GRAYED;
|
||||
}
|
||||
|
||||
//Specify should always be grayed out
|
||||
g_arenaservers.specify.generic.flags |= QMF_GRAYED;
|
||||
|
||||
// zero out list box
|
||||
g_arenaservers.list.numitems = 0;
|
||||
g_arenaservers.list.curvalue = 0;
|
||||
|
@ -1583,8 +1586,8 @@ static void ArenaServers_MenuInit( void ) {
|
|||
Menu_AddItem( &g_arenaservers.menu, (void*) &g_arenaservers.create );
|
||||
Menu_AddItem( &g_arenaservers.menu, (void*) &g_arenaservers.go );
|
||||
|
||||
Menu_AddItem( &g_arenaservers.menu, (void*) &g_arenaservers.punkbuster );
|
||||
Menu_AddItem( &g_arenaservers.menu, (void*) &g_arenaservers.pblogo );
|
||||
// Menu_AddItem( &g_arenaservers.menu, (void*) &g_arenaservers.punkbuster );
|
||||
// Menu_AddItem( &g_arenaservers.menu, (void*) &g_arenaservers.pblogo );
|
||||
|
||||
ArenaServers_LoadFavorites();
|
||||
|
||||
|
@ -1602,7 +1605,7 @@ static void ArenaServers_MenuInit( void ) {
|
|||
g_emptyservers = Com_Clamp( 0, 1, ui_browserShowEmpty.integer );
|
||||
g_arenaservers.showempty.curvalue = g_emptyservers;
|
||||
|
||||
g_arenaservers.punkbuster.curvalue = Com_Clamp( 0, 1, trap_Cvar_VariableValue( "cl_punkbuster" ) );
|
||||
// g_arenaservers.punkbuster.curvalue = Com_Clamp( 0, 1, trap_Cvar_VariableValue( "cl_punkbuster" ) );
|
||||
|
||||
// force to initial state and refresh
|
||||
g_arenaservers.master.curvalue = g_servertype = ArenaServers_SetType(g_servertype);
|
||||
|
@ -1631,7 +1634,7 @@ void ArenaServers_Cache( void ) {
|
|||
trap_R_RegisterShaderNoMip( ART_ARROWS_UP );
|
||||
trap_R_RegisterShaderNoMip( ART_ARROWS_DOWN );
|
||||
trap_R_RegisterShaderNoMip( ART_UNKNOWNMAP );
|
||||
trap_R_RegisterShaderNoMip( ART_PUNKBUSTER );
|
||||
// trap_R_RegisterShaderNoMip( ART_PUNKBUSTER );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue