mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 12:01:58 +00:00
166c7ea8a7
* Work around account switching failing to open the CEF debugger socket this automates lsof and gdb to force close the socket before steam finishes shutting down (from RegisterForShutdownStart) * lint * fix LD_LIBRARY_PATH for gdb
14 lines
295 B
TypeScript
14 lines
295 B
TypeScript
// import restartFix from './restart';
|
|
import cefSocketFix from './socket';
|
|
|
|
let fixes: Function[] = [];
|
|
|
|
export function deinitSteamFixes() {
|
|
fixes.forEach((deinit) => deinit());
|
|
}
|
|
|
|
export async function initSteamFixes() {
|
|
fixes.push(cefSocketFix());
|
|
// fixes.push(await restartFix());
|
|
}
|