summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/nvdrv.h
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-10-05 22:57:18 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-10-16 00:22:01 +0200
commit7dca0bc11ddcbbd38b2cc46b5fc8c0842df5f483 (patch)
treeef8f504f007d01072b8ba75d043dd94e68d75384 /src/core/hle/service/nvdrv/nvdrv.h
parentMerge pull request #7182 from Morph1984/system (diff)
downloadyuzu-7dca0bc11ddcbbd38b2cc46b5fc8c0842df5f483.tar
yuzu-7dca0bc11ddcbbd38b2cc46b5fc8c0842df5f483.tar.gz
yuzu-7dca0bc11ddcbbd38b2cc46b5fc8c0842df5f483.tar.bz2
yuzu-7dca0bc11ddcbbd38b2cc46b5fc8c0842df5f483.tar.lz
yuzu-7dca0bc11ddcbbd38b2cc46b5fc8c0842df5f483.tar.xz
yuzu-7dca0bc11ddcbbd38b2cc46b5fc8c0842df5f483.tar.zst
yuzu-7dca0bc11ddcbbd38b2cc46b5fc8c0842df5f483.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/nvdrv.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv.h b/src/core/hle/service/nvdrv/nvdrv.h
index e2a1dde5b..a5af5b785 100644
--- a/src/core/hle/service/nvdrv/nvdrv.h
+++ b/src/core/hle/service/nvdrv/nvdrv.h
@@ -49,6 +49,8 @@ struct EventInterface {
std::array<EventState, MaxNvEvents> status{};
// 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{};
// When an NVEvent is waiting on GPU interrupt, this is the sync_point
// associated with it.
std::array<u32, MaxNvEvents> assigned_syncpt{};