From 1c0dfc60a1b97e1c407037b0aac24d389cadef54 Mon Sep 17 00:00:00 2001 From: Pipi86 <66808852+Pipi86@users.noreply.github.com> Date: Wed, 11 Sep 2024 07:40:19 -0300 Subject: [PATCH] Typo fix (#820) * Update pm4_cmds.h * Update pm4_cmds.h --- src/video_core/amdgpu/pm4_cmds.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/amdgpu/pm4_cmds.h b/src/video_core/amdgpu/pm4_cmds.h index 064b8995..5d9c0f9e 100644 --- a/src/video_core/amdgpu/pm4_cmds.h +++ b/src/video_core/amdgpu/pm4_cmds.h @@ -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; }