mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-28 17:28:26 +00:00
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
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:
parent
ccf02d0aed
commit
1c0dfc60a1
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue