Skip to content

Commit

Permalink
Merge pull request FEX-Emu#3066 from neobrain/fix_procfsint_regression
Browse files Browse the repository at this point in the history
FileManagement: Fix inverted boolean check for procfs/interpreter support
  • Loading branch information
Sonicadvance1 authored Sep 7, 2023
2 parents 9ff5544 + 83c74e8 commit 615ab8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Tools/FEXLoader/LinuxSyscalls/FileManagement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ uint64_t FileManager::Readlinkat(int dirfd, const char *pathname, char *buf, siz
}
}

if (SupportsProcFSInterpreter) {
if (!SupportsProcFSInterpreter) {
char PidSelfPath[50];
snprintf(PidSelfPath, 50, "/proc/%i/exe", CurrentPID);

Expand Down

0 comments on commit 615ab8d

Please sign in to comment.