mirror of
https://github.com/colby-swandale/waterfoul
synced 2025-01-13 08:01:18 +01:00
fixed unintialized constant in PPU render window
This commit is contained in:
parent
91eba849b0
commit
f095a087a8
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ module Waterfoul
|
|||
0.upto(7) do |pixelx|
|
||||
buffer_addr = line_pixel_offset + pixelx + window_pos_x
|
||||
|
||||
next if buffer_addr < 0 || buffer_addr >= Sreen::SCREEN_WIDTH
|
||||
next if buffer_addr < 0 || buffer_addr >= Screen::SCREEN_WIDTH
|
||||
|
||||
shift = 0x1 << (7 - pixelx)
|
||||
|
||||
|
|
Loading…
Reference in a new issue