summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/nvdrv.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-10-30 11:35:05 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-10-06 21:00:51 +0200
commitac104a24d11c5875e25daee5dd405ee9fe5f3a21 (patch)
treee25f2ebf312e60536573bf33ca1d72c982e359bb /src/core/hle/service/nvdrv/nvdrv.h
parentNvHost: Fix some regressions and correct signaling on timeout. (diff)
downloadyuzu-ac104a24d11c5875e25daee5dd405ee9fe5f3a21.tar
yuzu-ac104a24d11c5875e25daee5dd405ee9fe5f3a21.tar.gz
yuzu-ac104a24d11c5875e25daee5dd405ee9fe5f3a21.tar.bz2
yuzu-ac104a24d11c5875e25daee5dd405ee9fe5f3a21.tar.lz
yuzu-ac104a24d11c5875e25daee5dd405ee9fe5f3a21.tar.xz
yuzu-ac104a24d11c5875e25daee5dd405ee9fe5f3a21.tar.zst
yuzu-ac104a24d11c5875e25daee5dd405ee9fe5f3a21.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/nvdrv.h')
-rw-r--r--src/core/hle/service/nvdrv/nvdrv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv.h b/src/core/hle/service/nvdrv/nvdrv.h
index c929e5106..4c4aa7dab 100644
--- a/src/core/hle/service/nvdrv/nvdrv.h
+++ b/src/core/hle/service/nvdrv/nvdrv.h
@@ -50,7 +50,7 @@ struct EventInterface {
// Tells if an NVEvent is registered or not
std::array<bool, MaxNvEvents> registered{};
// Tells the NVEvent that it has failed.
- std::array<bool, MaxNvEvents> failed{};
+ std::array<u32, MaxNvEvents> fails{};
// When an NVEvent is waiting on GPU interrupt, this is the sync_point
// associated with it.
std::array<u32, MaxNvEvents> assigned_syncpt{};