This commit is contained in:
Kyle McNally 2024-04-15 11:31:15 -04:00 committed by Sparticuz
parent 2c715c4e97
commit c51ae58407
1 changed files with 5 additions and 1 deletions

View File

@ -400,7 +400,11 @@ class Chromium {
`Graphics mode must be a boolean, you entered '${value}'`
);
}
this.graphicsMode = value;
// Disabling 'disabling the gpu'
// Blocked by https://github.com/Sparticuz/chromium/issues/247
// this.graphicsMode = value;
this.graphicsMode = true;
}
}