mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 00:37:49 +00:00
2b4e3318ca
VALVEEEEE
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
// import reloadFix from './reload';
|
|
import restartFix from './restart';
|
|
let fixes: Function[] = [];
|
|
|
|
export function deinitSteamFixes() {
|
|
fixes.forEach((deinit) => deinit());
|
|
}
|
|
|
|
export async function initSteamFixes() {
|
|
// fixes.push(await reloadFix());
|
|
fixes.push(await restartFix());
|
|
}
|