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

neogeo/neogeo_v.cpp: Make palette byte access behave the same as on real hardware #11869

Merged
merged 1 commit into from
Dec 23, 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
2 changes: 1 addition & 1 deletion src/mame/neogeo/neogeo_v.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ uint16_t neogeo_base_state::paletteram_r(offs_t offset)
void neogeo_base_state::paletteram_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
offset += m_palette_bank;
data = COMBINE_DATA(&m_paletteram[offset]);
m_paletteram[offset] = data;

int dark = data >> 15;
int r = ((data >> 14) & 0x1) | ((data >> 7) & 0x1e);
Expand Down