We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70fc3a8 commit ac3597fCopy full SHA for ac3597f
2 files changed
benchmarks/optcarrot/lib/optcarrot/driver/sixel_video.rb
@@ -7,7 +7,7 @@ def init
7
super
8
@buff = "".b
9
@line = "".b
10
- @seq_setup = "\e[H\ePq"
+ @seq_setup = "\e[H\eP7q"
11
print "\e[2J"
12
13
@palette, colors = Driver.quantize_colors(@palette_rgb)
benchmarks/optcarrot/lib/optcarrot/ppu.rb
@@ -471,7 +471,6 @@ def poke_2007(_addr, data)
471
@palette_ram[addr ^ 0x10] = data
472
@output_color[addr ^ 0x10] = final
473
end
474
- @output_bg_color = @palette_ram[0] & 0x3f
475
else
476
addr &= 0x3fff
477
if addr >= 0x2000
@@ -891,7 +890,7 @@ def run
891
890
892
def dispose
893
@run = false
894
- raise 'PPU Fiber should have finished' unless @fiber.resume == :done
+ raise 'PPU Fiber should have finished' unless @fiber.nil? || @fiber.resume == :done
895
@fiber = nil
896
897
0 commit comments