mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-13 22:22:05 +00:00
rbdmap filesystem works on Linux
This commit is contained in:
parent
8642820fb2
commit
70b757ee58
1 changed files with 2 additions and 8 deletions
|
@ -480,13 +480,6 @@ double Sys_ClockTicksPerSecond()
|
|||
}
|
||||
|
||||
/*
|
||||
==============
|
||||
Sys_DefaultBasePath
|
||||
==============
|
||||
*/
|
||||
const char* Sys_DefaultBasePath()
|
||||
{
|
||||
/*
|
||||
================
|
||||
Sys_DefaultBasePath
|
||||
|
||||
|
@ -499,6 +492,8 @@ Get the default base path
|
|||
Try to be intelligent: if there is no BASE_GAMEDIR, try the next path
|
||||
================
|
||||
*/
|
||||
static idStr basepath;
|
||||
|
||||
const char* Sys_DefaultBasePath()
|
||||
{
|
||||
struct stat st;
|
||||
|
@ -573,7 +568,6 @@ const char* Sys_DefaultBasePath()
|
|||
common->Printf( "WARNING: using hardcoded default base path %s\n", DEFAULT_BASEPATH );
|
||||
return DEFAULT_BASEPATH;
|
||||
}
|
||||
}
|
||||
|
||||
int Sys_NumLangs()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue