diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-01-09 20:34:46 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-01-10 03:33:58 +0100 |
commit | 36da4d1121d8286badcbb78993b46853d260ccb6 (patch) | |
tree | f1247d6f4ab6d7afd231b738704b002afe4cd2c3 | |
parent | Merge pull request #7683 from liushuyu/fmt-8.1 (diff) | |
download | yuzu-36da4d1121d8286badcbb78993b46853d260ccb6.tar yuzu-36da4d1121d8286badcbb78993b46853d260ccb6.tar.gz yuzu-36da4d1121d8286badcbb78993b46853d260ccb6.tar.bz2 yuzu-36da4d1121d8286badcbb78993b46853d260ccb6.tar.lz yuzu-36da4d1121d8286badcbb78993b46853d260ccb6.tar.xz yuzu-36da4d1121d8286badcbb78993b46853d260ccb6.tar.zst yuzu-36da4d1121d8286badcbb78993b46853d260ccb6.zip |
Diffstat (limited to '')
-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 53f11a9ac..18d161320 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -3626,8 +3626,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__ |