Typo fix (#820)
Some checks are pending
Reuse / reuse (push) Waiting to run
Clang Format / clang-format (push) Waiting to run
Linux-Qt / build (push) Waiting to run
Linux / build (push) Waiting to run
macOS-Qt / build (push) Waiting to run
macOS / build (push) Waiting to run
Windows-Qt / build (push) Waiting to run
Windows / build (push) Waiting to run

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