* Update pm4_cmds.h

* Update pm4_cmds.h
This commit is contained in:
Pipi86 2024-09-11 07:40:19 -03:00 committed by GitHub
parent ccf02d0aed
commit 1c0dfc60a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -500,7 +500,7 @@ struct PM4CmdWriteData {
struct PM4CmdEventWriteEos { struct PM4CmdEventWriteEos {
enum class Command : u32 { enum class Command : u32 {
GdsStore = 1u, GdsStore = 1u,
SingalFence = 2u, SignalFence = 2u,
}; };
PM4Type3Header header; PM4Type3Header header;
@ -534,7 +534,7 @@ struct PM4CmdEventWriteEos {
void SignalFence() const { void SignalFence() const {
const auto cmd = command.Value(); const auto cmd = command.Value();
switch (cmd) { switch (cmd) {
case Command::SingalFence: { case Command::SignalFence: {
*Address() = DataDWord(); *Address() = DataDWord();
break; break;
} }