Skip to content

Commit

Permalink
hash: add support for WonderSwan and WonderSwan Color. (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
lubosz authored and sselph committed Feb 13, 2018
1 parent cf56be9 commit c7f5063
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ scraper
[![Build Status](https://travis-ci.org/sselph/scraper.svg?branch=master)](https://travis-ci.org/sselph/scraper) [![GoDoc](https://godoc.org/github.com/sselph/scraper?status.svg)](https://godoc.org/github.com/sselph/scraper)

An auto-scraper for EmulationStation written in Go using hashes.
This currently works with NES, SNES, N64, GB, GBC, GBA, MD, SMS, 32X, GG, PCE, A2600, LNX, MAME/FBA(see below), Dreamcast(bin/gdi), PSX(bin/cue), ScummVM, SegaCD ROMs.
This currently works with NES, SNES, N64, GB, GBC, GBA, MD, SMS, 32X, GG, PCE, A2600, LNX, MAME/FBA(see below), Dreamcast(bin/gdi), PSX(bin/cue), ScummVM, SegaCD, WonderSwan, WonderSwan Color ROMs.

How it Works
------------
Expand Down
2 changes: 1 addition & 1 deletion rom/hash/hash.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ func getDecoder(ext string) (decoder, bool) {
switch ext {
case ".bin", ".a26", ".a52", ".rom", ".cue", ".gdi", ".gb", ".gba", ".gbc", ".32x", ".gg",
".pce", ".sms", ".col", ".ngp", ".ngc", ".sg", ".int", ".vb", ".vec", ".gam", ".j64",
".jag", ".mgw", ".nds", ".fds", ".ctg", ".sgx", ".tgx":
".jag", ".mgw", ".nds", ".fds", ".ctg", ".sgx", ".tgx", ".ws", ".wsc":
return noop, true
case ".a78":
return decodeA78, true
Expand Down

0 comments on commit c7f5063

Please sign in to comment.