mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 19:51:58 +00:00
13 lines
288 B
TypeScript
13 lines
288 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());
|
|
}
|