소스 검색

Fixed Steam Runtime sandbox detection

Fixes hotplug issues on Steam Deck for Proton and native games
Sam Lantinga 3 년 전
부모
커밋
bcd97b36d2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/linux/SDL_sandbox.c

+ 1 - 1
src/core/linux/SDL_sandbox.c

@@ -37,7 +37,7 @@ SDL_Sandbox SDL_DetectSandbox(void)
         return SDL_SANDBOX_SNAP;
     }
 
-    if (access("/run/host/container-runtime", F_OK) == 0) {
+    if (access("/run/host/container-manager", F_OK) == 0) {
         return SDL_SANDBOX_UNKNOWN_CONTAINER;
     }