File tree Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -2196,7 +2196,8 @@ bool CL_ShouldLoadBackgroundLevel( const CCommand &args )
2196
2196
2197
2197
// If TF2 and PC we don't want to load the background map.
2198
2198
bool bIsTF2 = false ;
2199
- if ( ( Q_stricmp ( COM_GetModDirectory (), " tf" ) == 0 ) || ( Q_stricmp ( COM_GetModDirectory (), " tf_beta" ) == 0 ) )
2199
+ if ( ( Q_stricmp ( COM_GetModDirectory (), " tf" ) == 0 ) ||
2200
+ ( Q_stricmp ( COM_GetModDirectory (), " tf_beta" ) == 0 ) )
2200
2201
{
2201
2202
bIsTF2 = true ;
2202
2203
}
@@ -2206,15 +2207,6 @@ bool CL_ShouldLoadBackgroundLevel( const CCommand &args )
2206
2207
2207
2208
if ( args.ArgC () == 2 )
2208
2209
{
2209
- // presence of args identifies an end-of-game situation
2210
- if ( IsX360 () )
2211
- {
2212
- // 360 needs to get UI in the correct state to transition to the Background level
2213
- // from the credits.
2214
- EngineVGui ()->OnCreditsFinished ();
2215
- return true ;
2216
- }
2217
-
2218
2210
if ( !Q_stricmp ( args[1 ], " force" ) )
2219
2211
{
2220
2212
// Adrian: Have to do this so the menu shows up if we ever call this while in a level.
@@ -2264,12 +2256,6 @@ bool CL_ShouldLoadBackgroundLevel( const CCommand &args )
2264
2256
CommandLine ()->CheckParm (" -makereslists" ))
2265
2257
return false ;
2266
2258
2267
- #ifdef _X360
2268
- // check if we are accepting an invite
2269
- if ( XboxLaunch ()->GetLaunchFlags () & LF_INVITERESTART )
2270
- return false ;
2271
- #endif
2272
-
2273
2259
// nothing else is going on, so load the startup level
2274
2260
2275
2261
return true ;
You can’t perform that action at this time.
0 commit comments