Skip to content

Commit

Permalink
ntdll: HACK: Enable fsync_yield_to_waiters for FFXIII-2.
Browse files Browse the repository at this point in the history
CW-Bug-Id: #23021
  • Loading branch information
Paul Gofman committed Dec 7, 2023
1 parent aa53e1a commit 926a670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/ntdll/unix/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -2351,7 +2351,7 @@ static void hacks_init(void)
env_str = getenv("WINE_FSYNC_YIELD_TO_WAITERS");
if (env_str)
fsync_yield_to_waiters = !!atoi(env_str);
else if (sgi) fsync_yield_to_waiters = !strcmp(sgi, "292120") || !strcmp(sgi, "345350");
else if (sgi) fsync_yield_to_waiters = !strcmp(sgi, "292120") || !strcmp(sgi, "345350") || !strcmp(sgi, "292140");
if (fsync_yield_to_waiters)
ERR("HACK: fsync: yield to waiters.\n");

Expand Down

0 comments on commit 926a670

Please sign in to comment.