Compare commits

..

3 Commits

Author SHA1 Message Date
lizzie c6799d6921 Trigger Build 2026-09-06 19:19:46 +00:00
lizzie d5166fed93 Trigger Build 2026-09-05 22:02:30 +00:00
lizzie 97b1d1b472 2026-09-05 17:27:43
Signed-off-by: lizzie <lizzie@eden-emu.dev>
2026-09-05 21:51:22 +00:00
2 changed files with 1 additions and 5 deletions
-1
View File
@@ -117,7 +117,6 @@ template <typename T>
static void GetFuncAddress(Common::DynamicLibrary& dll, const char* name, T& pfn) {
if (!dll.GetSymbol(name, &pfn)) {
LOG_CRITICAL(HW_Memory, "Failed to load {}", name);
throw std::bad_alloc{};
}
}
+1 -4
View File
@@ -121,10 +121,7 @@ union Exclusive {
constexpr explicit Exclusive(u32 raw_) : raw{raw_} {}
constexpr bool Verify() {
if (this->GetSig() != 0x10) return false;
const bool pair = decltype(l)::ExtractValue(raw) & 1;
const bool fixed_rt2 = decltype(rt2)::ExtractValue(raw) == 0b11111;
return pair || fixed_rt2;
return this->GetSig() == 0x10;
}
constexpr u32 GetSig() {