Skip to content

Commit

Permalink
Correct color bleed mask
Browse files Browse the repository at this point in the history
As brought up in higan-emu#148.
  • Loading branch information
Kawa-oneechan authored Jan 10, 2021
1 parent d48e837 commit d73329a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion higan/higan/node/video/screen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ auto Screen::refresh(uint32* input, uint pitch, uint width, uint height) -> void
}

if(_colorBleed) {
uint32 mask = 1 << 24 | 1 << 16 | 1 << 8 | 1 << 9;
uint32 mask = 1 << 24 | 1 << 16 | 1 << 8 | 1 << 0;
for(uint y : range(height)) {
auto target = output + y * width;
for(uint x : range(width)) {
Expand Down

0 comments on commit d73329a

Please sign in to comment.