mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 08:47:49 +00:00
fix oopsie breaking decky on the latest beta
This commit is contained in:
@@ -7,7 +7,7 @@ interface Window {
|
|||||||
(async () => {
|
(async () => {
|
||||||
// Wait for main webpack chunks to definitely be loaded
|
// Wait for main webpack chunks to definitely be loaded
|
||||||
console.time('[Decky:Boot] Waiting for main Webpack chunks...');
|
console.time('[Decky:Boot] Waiting for main Webpack chunks...');
|
||||||
while (!window.webpackChunksteamui || window.webpackChunksteamui.length < 8) {
|
while (!window.webpackChunksteamui || window.webpackChunksteamui.length < 5) {
|
||||||
await new Promise((r) => setTimeout(r, 10)); // Can't use DFL sleep here.
|
await new Promise((r) => setTimeout(r, 10)); // Can't use DFL sleep here.
|
||||||
}
|
}
|
||||||
console.timeEnd('[Decky:Boot] Waiting for main Webpack chunks...');
|
console.timeEnd('[Decky:Boot] Waiting for main Webpack chunks...');
|
||||||
|
|||||||
Reference in New Issue
Block a user