From ad8948965baf9026e737e808422a93e67fb910c8 Mon Sep 17 00:00:00 2001 From: AlexNordahl Date: Wed, 12 Aug 2026 14:32:59 +0200 Subject: [PATCH] Fix undefined behavior in Plat_IsInDebugSession on PlayStation --- src/tier0/dbg.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tier0/dbg.cpp b/src/tier0/dbg.cpp index f794c1e8..a6721ab1 100644 --- a/src/tier0/dbg.cpp +++ b/src/tier0/dbg.cpp @@ -119,6 +119,7 @@ bool Plat_IsInDebugSession() return (nTracePid != 0); #elif IsPlaystation() // NDA material + return false; #elif IsNintendoSwitch() return false; #else