File tree Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ bool CDedicatedAppSystemGroup::PreInit( )
278
278
return false ;
279
279
280
280
#ifdef _WIN32
281
- g_bVGui = ! CommandLine ()->CheckParm ( " -console " );
281
+ g_bVGui = CommandLine ()->CheckParm ( " -vgui " );
282
282
#endif
283
283
284
284
CreateInterfaceFn factory = GetFactory ();
Original file line number Diff line number Diff line change @@ -191,8 +191,4 @@ CClientState cl;
191
191
char g_minidumpinfo[ 4096 ] = {0 };
192
192
PAGED_POOL_INFO_t g_pagedpoolinfo = { 0 };
193
193
194
- int g_iVCRPlaybackSleepInterval = 0 ;
195
- IGame *game = NULL ;
196
-
197
-
198
194
#endif
File renamed without changes.
Original file line number Diff line number Diff line change @@ -221,19 +221,14 @@ def build(bld):
221
221
]
222
222
223
223
if bld .env .DEST_OS == 'win32' :
224
- source += [
225
- '../public/tier0/memoverride.cpp' ,
226
- ]
224
+ source += ['../public/tier0/memoverride.cpp' ]
227
225
else :
228
- source += [
229
- 'sys_linuxwind.cpp' ,
230
- 'audio/snd_posix.cpp' ,
231
- ]
226
+ source += ['audio/snd_posix.cpp' ]
232
227
233
228
if bld .env .DEDICATED :
234
- source += ['cl_null.cpp' ]
229
+ source += ['cl_null.cpp' , 'sys_stubwind.cpp' ]
235
230
else :
236
- source += source_win if bld .env .DEST_OS == 'win32' else []
231
+ source += source_win if bld .env .DEST_OS == 'win32' else ['sys_stubwind.cpp' ]
237
232
238
233
source += [
239
234
'client_pch.cpp' ,
You can’t perform that action at this time.
0 commit comments