mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 13:42:21 +00:00
- added fxgl to the permissions check
This commit is contained in:
parent
494ff6431b
commit
925a3c1e98
1 changed files with 2 additions and 1 deletions
|
@ -281,7 +281,8 @@ qboolean VID_LoadRefresh( char *name )
|
||||||
if (strstr(fn, "softx") == NULL &&
|
if (strstr(fn, "softx") == NULL &&
|
||||||
strstr(fn, "glx") == NULL &&
|
strstr(fn, "glx") == NULL &&
|
||||||
strstr(fn, "softsdl") == NULL &&
|
strstr(fn, "softsdl") == NULL &&
|
||||||
strstr(fn, "sdlgl") == NULL) { // softx doesn't require root
|
strstr(fn, "sdlgl") == NULL &&
|
||||||
|
strstr(fn, "fxgl") == NULL) { // softx doesn't require root
|
||||||
#if 0
|
#if 0
|
||||||
if (st.st_uid != 0) {
|
if (st.st_uid != 0) {
|
||||||
Com_Printf( "LoadLibrary(\"%s\") failed: ref is not owned by root\n", name);
|
Com_Printf( "LoadLibrary(\"%s\") failed: ref is not owned by root\n", name);
|
||||||
|
|
Loading…
Reference in a new issue