mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-27 20:56:25 +00:00
DSPRegisterView: Get rid of magic numbers
This commit is contained in:
parent
5dedd0a85b
commit
2ba0d6eb77
3 changed files with 11 additions and 8 deletions
|
@ -13,7 +13,7 @@
|
|||
|
||||
wxString CDSPRegTable::GetValue(int row, int col)
|
||||
{
|
||||
if (row < 32) // 32 "normal" regs
|
||||
if (row < GetNumberRows())
|
||||
{
|
||||
switch (col)
|
||||
{
|
||||
|
@ -41,10 +41,12 @@ void CDSPRegTable::UpdateCachedRegs()
|
|||
|
||||
m_CachedCounter = g_dsp.step_counter;
|
||||
|
||||
for (int i = 0; i < 32; ++i)
|
||||
for (size_t i = 0; i < m_CachedRegs.size(); ++i)
|
||||
{
|
||||
m_CachedRegHasChanged[i] = (m_CachedRegs[i] != DSPCore_ReadRegister(i));
|
||||
m_CachedRegs[i] = DSPCore_ReadRegister(i);
|
||||
const u16 value = DSPCore_ReadRegister(i);
|
||||
|
||||
m_CachedRegHasChanged[i] = m_CachedRegs[i] != value;
|
||||
m_CachedRegs[i] = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue