mirror of
https://github.com/colby-swandale/waterfoul
synced 2024-12-26 21:58:54 +01:00
fixed bug where skip_boot option was not being checkd correctly
This commit is contained in:
parent
a028d378b7
commit
1aa1ccb556
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ module Waterfoul
|
|||
# initialize emulated memory management unit
|
||||
$mmu = MMU.new cartridge
|
||||
cpu = CPU.new
|
||||
@cpu = options.has_key?(:skip_boot) ? SkipBoot.set_state(cpu) : cpu
|
||||
@cpu = options.has_key?('skip_boot') ? SkipBoot.set_state(cpu) : cpu
|
||||
@gpu = GPU.new
|
||||
@screen = Screen.new
|
||||
# @sound = Sound.new
|
||||
|
|
Loading…
Reference in a new issue