Turned long single comment into two comments.

Signed-off-by: Joel Elrod <joelelrod246@gmail.com>
This commit is contained in:
Joel Elrod 2023-07-08 15:50:46 -04:00
parent e21d8aea19
commit 4a24255ab0
1 changed files with 5 additions and 5 deletions

View File

@ -195,7 +195,7 @@ void ui_pad_sel(void)
cursor_reg &= 0x1f;
if (WPAD_ButtonsDown(0) & WPAD_BUTTON_A)
{
ui_mode = UIM_EDIT_REG;
ui_mode = UIRegisterMode::Edit;
reg_value = &dspreg_in[cursor_reg];
}
#endif
@ -210,7 +210,7 @@ void ui_pad_sel(void)
cursor_reg &= 0x1f;
if (PAD_ButtonsDown(0) & PAD_BUTTON_A)
{
ui_mode = UIM_EDIT_REG;
ui_mode = UIRegisterMode::Edit;
reg_value = &dspreg_in[cursor_reg];
}
}
@ -301,8 +301,8 @@ void handle_dsp_mail(void)
}
else if (mail == 0x8888beef)
{
// Provide register base to DSP (if using dsp_base.inc, it will DMA them to the correct
// place.)
// Provide register base to DSP.
// If using dsp_base.inc, it will DMA them to the correct place.
while (real_dsp.CheckMailTo())
{
}
@ -571,7 +571,7 @@ int main()
case UIRegisterMode::Select:
ui_pad_sel();
break;
case UIM_EDIT_REG:
case UIRegisterMode::Edit:
ui_pad_edit_reg();
break;
default: