clang format fix

This commit is contained in:
psucien 2024-04-28 00:51:34 +02:00
parent 1047293bf2
commit d2c53d0fde
1 changed files with 6 additions and 6 deletions

View File

@ -12,7 +12,8 @@
#include <signal.h>
#include <sys/mman.h>
#define PROT_READ_WRITE (PROT_READ | PROT_WRITE) // There is no option to combine bitflags like this on Windows
#define PROT_READ_WRITE
(PROT_READ | PROT_WRITE) // There is no option to combine bitflags like this on Windows
#else
#include <Windows.h>
@ -50,8 +51,7 @@ LONG WINAPI GuestFaultSignalHandler(EXCEPTION_POINTERS *pExp) noexcept {
if (info[0] == 1) { // Write violation
g_texture_cache->OnCpuWrite(info[1]);
return EXCEPTION_CONTINUE_EXECUTION;
}
else {
} else {
UNREACHABLE();
}
}