mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 22:39:58 +00:00
Merge pull request #7690 from Morph1984/increase-file-limit-win
yuzu: main: Increase the open file limit on Windows to 8192
This commit is contained in:
commit
f1aa7ff893
1 changed files with 2 additions and 2 deletions
|
@ -3678,8 +3678,8 @@ int main(int argc, char* argv[]) {
|
||||||
QCoreApplication::setApplicationName(QStringLiteral("yuzu"));
|
QCoreApplication::setApplicationName(QStringLiteral("yuzu"));
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
// Increases the maximum open file limit to 4096
|
// Increases the maximum open file limit to 8192
|
||||||
_setmaxstdio(4096);
|
_setmaxstdio(8192);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
|
|
Loading…
Reference in a new issue