mirror of
https://github.com/colby-swandale/waterfoul
synced 2024-12-25 21:58:55 +01:00
Fix typos in requires
* Case insensitivity is platform-dependent.
This commit is contained in:
parent
f095a087a8
commit
7412e69d11
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ require "waterfoul/skip_boot"
|
||||||
require "waterfoul/helper"
|
require "waterfoul/helper"
|
||||||
require "waterfoul/interrupt"
|
require "waterfoul/interrupt"
|
||||||
require "waterfoul/mmu"
|
require "waterfoul/mmu"
|
||||||
require "Waterfoul/timer"
|
require "waterfoul/timer"
|
||||||
require "waterfoul/cpu"
|
require "waterfoul/cpu"
|
||||||
require "waterfoul/errors"
|
require "waterfoul/errors"
|
||||||
require "waterfoul/sdl"
|
require "waterfoul/sdl"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
require 'waterfoul/instructions/opcode'
|
require 'waterfoul/instructions/opcode'
|
||||||
require 'waterfoul/instructions/registers'
|
require 'waterfoul/instructions/registers'
|
||||||
require 'Waterfoul/instructions/timings'
|
require 'waterfoul/instructions/timings'
|
||||||
require 'waterfoul/instructions/jump'
|
require 'waterfoul/instructions/jump'
|
||||||
require 'waterfoul/instructions/load'
|
require 'waterfoul/instructions/load'
|
||||||
require 'waterfoul/instructions/logic'
|
require 'waterfoul/instructions/logic'
|
||||||
|
|
Loading…
Reference in a new issue