From 798c9826cc055af068d75bb2cac73fc300eef4af Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Tue, 4 Oct 2022 15:38:55 -0700 Subject: [PATCH] Typos --- Source/Core/Core/HW/WII_IPC.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/HW/WII_IPC.cpp b/Source/Core/Core/HW/WII_IPC.cpp index 5cf7ae22cb..ce6e8b9b89 100644 --- a/Source/Core/Core/HW/WII_IPC.cpp +++ b/Source/Core/Core/HW/WII_IPC.cpp @@ -5,7 +5,7 @@ #include #include -#include +#include #include "Common/ChunkFile.h" #include "Common/CommonTypes.h" @@ -121,7 +121,7 @@ struct AVEState #pragma pack() static_assert(sizeof(AVEState) == 0x100); -std::string_view GetAVERegisterName(u8 address) +std::string GetAVERegisterName(u8 address) { if (address == 0x00) return "A/V Timings"; @@ -158,7 +158,7 @@ std::string_view GetAVERegisterName(u8 address) else if (address == 0x71) return "Audio stereo output control - right volume"; else if (address == 0x72) - return "Audio stereo output control - right volume"; + return "Audio stereo output control - left volume"; else if (address >= 0x7a && address <= 0x7d) return "Closed Captioning control"; else