Skip to content

Commit

Permalink
Remove bootstrap and font parsing logic for now.
Browse files Browse the repository at this point in the history
Right now, makemask just blasts it all away anyway. This means I won't
need to impl searching for the files.
  • Loading branch information
trhodeos committed Mar 18, 2018
1 parent d4c0350 commit 92da7ee
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions cmd/spicy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,22 +99,12 @@ func main() {
}
defer binarized_object_file.Close()

bootstrap, err := os.Open(*bootstrap_filename)
if err != nil {
panic(err)
}
defer bootstrap.Close()
font, err := os.Open(*font_filename)
if err != nil {
panic(err)
}
defer font.Close()
out, err := os.Create(fmt.Sprintf("%s.n64", w.Name))
if err != nil {
panic(err)
}
defer out.Close()
rom, err := n64rom.NewBlankRomFile(bootstrap, font, byte(*filldata))
rom, err := n64rom.NewBlankRomFile(byte(*filldata))
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 92da7ee

Please sign in to comment.