Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,14 @@ func ProcessPlatforms(platforms []string) ([]byte, error) {
ret |= 0b100000000000
continue
}
if platform == "n64" {
ret |= 0b000000000100
continue
}
if platform == "dreamcast" {
ret |= 0b000000000010
continue
}
return nil, fmt.Errorf("Unknown platform: '" + platform + "'")
}

Expand Down