gnmdriver: remove redundant EqEventType assert (#1975)
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / windows-qt (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / macos-qt (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-qt (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions

This commit is contained in:
Nenkai 2024-12-29 19:15:04 +01:00 committed by GitHub
parent 38f1cc2652
commit ac2e8c2602
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1015,11 +1015,7 @@ int PS4_SYSV_ABI sceGnmGetDebugTimestamp() {
int PS4_SYSV_ABI sceGnmGetEqEventType(const SceKernelEvent* ev) { int PS4_SYSV_ABI sceGnmGetEqEventType(const SceKernelEvent* ev) {
LOG_TRACE(Lib_GnmDriver, "called"); LOG_TRACE(Lib_GnmDriver, "called");
return sceKernelGetEventData(ev);
auto data = sceKernelGetEventData(ev);
ASSERT(static_cast<GnmEventType>(data) == GnmEventType::GfxEop);
return data;
} }
int PS4_SYSV_ABI sceGnmGetEqTimeStamp() { int PS4_SYSV_ABI sceGnmGetEqTimeStamp() {