diff options
author | bunnei <bunneidev@gmail.com> | 2022-01-13 21:25:06 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 21:25:06 -0800 |
commit | f1aa7ff893208b4c5c328d1a77c4028ecba94bf4 (patch) | |
tree | f3c6e5acaa7bde9be582357120a72f711b08619c | |
parent | b3bcf0fa88aac9e1287d9df32585e6d8abc16b2c (diff) | |
parent | 36da4d1121d8286badcbb78993b46853d260ccb6 (diff) |
Merge pull request #7690 from Morph1984/increase-file-limit-win
yuzu: main: Increase the open file limit on Windows to 8192
-rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index e8a4ac9182..e10eb70a20 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -3678,8 +3678,8 @@ int main(int argc, char* argv[]) { QCoreApplication::setApplicationName(QStringLiteral("yuzu")); #ifdef _WIN32 - // Increases the maximum open file limit to 4096 - _setmaxstdio(4096); + // Increases the maximum open file limit to 8192 + _setmaxstdio(8192); #endif #ifdef __APPLE__ |