grphcs.cpp scrt.cpp

This commit is contained in:
Issac332 2026-06-09 18:52:27 +03:00
parent 5a9dae8104
commit b9a98e2630
2 changed files with 3 additions and 3 deletions

View file

@ -730,7 +730,7 @@ void Graphics::transition(unsigned int duration, const char *filename, int vague
simpleShader.setProg(prog); simpleShader.setProg(prog);
} }
#ifndef __linux__ || BSD || __unix__ #if !defined(__linux__) && !defined(BSD) && !defined(__unix__)
if (p->threadData->exiting) SDL_SetWindowOpacity(p->threadData->window, 1.0f - prog); if (p->threadData->exiting) SDL_SetWindowOpacity(p->threadData->window, 1.0f - prog);
#endif #endif

View file

@ -54,8 +54,8 @@ void SecurityManagerInit(){
securitystate = "sandboxed_SECCOMP"; securitystate = "sandboxed_SECCOMP";
#elif #else
Debug() << "[SECURITY] SecurityManager doesn't support this platform."; Debug() << "[SECURITY] SecurityManager doesn't support this platform.";
#endif #endif
} }