mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
Typos
This commit is contained in:
parent
e2defde893
commit
798c9826cc
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <bitset>
|
#include <bitset>
|
||||||
#include <string_view>
|
#include <string>
|
||||||
|
|
||||||
#include "Common/ChunkFile.h"
|
#include "Common/ChunkFile.h"
|
||||||
#include "Common/CommonTypes.h"
|
#include "Common/CommonTypes.h"
|
||||||
@ -121,7 +121,7 @@ struct AVEState
|
|||||||
#pragma pack()
|
#pragma pack()
|
||||||
static_assert(sizeof(AVEState) == 0x100);
|
static_assert(sizeof(AVEState) == 0x100);
|
||||||
|
|
||||||
std::string_view GetAVERegisterName(u8 address)
|
std::string GetAVERegisterName(u8 address)
|
||||||
{
|
{
|
||||||
if (address == 0x00)
|
if (address == 0x00)
|
||||||
return "A/V Timings";
|
return "A/V Timings";
|
||||||
@ -158,7 +158,7 @@ std::string_view GetAVERegisterName(u8 address)
|
|||||||
else if (address == 0x71)
|
else if (address == 0x71)
|
||||||
return "Audio stereo output control - right volume";
|
return "Audio stereo output control - right volume";
|
||||||
else if (address == 0x72)
|
else if (address == 0x72)
|
||||||
return "Audio stereo output control - right volume";
|
return "Audio stereo output control - left volume";
|
||||||
else if (address >= 0x7a && address <= 0x7d)
|
else if (address >= 0x7a && address <= 0x7d)
|
||||||
return "Closed Captioning control";
|
return "Closed Captioning control";
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user