Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed array-bounds oversight in sun4.cpp, fixes macOS and Linux compiles #10794

Merged
merged 1 commit into from Jan 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/mame/sun/sun4.cpp
Expand Up @@ -921,8 +921,8 @@ void sun4_base_state::machine_reset()

m_timer_count[0] = 0;
m_timer_count[1] = 0;
m_timer_limit[2] = 0;
m_timer_limit[3] = 0;
m_timer_limit[0] = 0;
m_timer_limit[1] = 0;

m_dma_ctrl = 0;
m_dma_addr = 0;
Expand Down