Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Pokechu22 committed Dec 29, 2024
1 parent e2defde commit 798c982
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Core/Core/HW/WII_IPC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include <array>
#include <bitset>
#include <string_view>
#include <string>

#include "Common/ChunkFile.h"
#include "Common/CommonTypes.h"
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 798c982

Please sign in to comment.