(LibretroDB) Update

This commit is contained in:
twinaphex 2015-01-20 19:36:36 +01:00
parent 9efbd021af
commit 017804e4e8
2 changed files with 2 additions and 3 deletions

View File

@ -57,7 +57,7 @@ dat_converter snes.rdb rom.crc snes1.dat snes2.dat
Some examples of queries you can use with rarchdbtool: Some examples of queries you can use with rarchdbtool:
1) Glob pattern matching 1) Glob pattern matching
Usecase : Search for all games containing 'Street Fighter' in the 'name' field (glob pattern matching) Usecase : Search for all games starting with 'Street Fighter' in the 'name' field (glob pattern matching)
`rarchdb_tool <db file> find "{'name':glob('Street Fighter*')}"` `rarchdb_tool <db file> find "{'name':glob('Street Fighter*')}"`

View File

@ -158,7 +158,6 @@ function get_value()
elspa_rating = t.elspa_rating, elspa_rating = t.elspa_rating,
pegi_rating = t.pegi_rating, pegi_rating = t.pegi_rating,
cero_rating = t.cero_rating, cero_rating = t.cero_rating,
serial = binary(t.serial),
developers = t.developers, developers = t.developers,
publisher = t.publisher, publisher = t.publisher,
@ -167,7 +166,7 @@ function get_value()
crc = binary(unhex(t.rom.crc)), crc = binary(unhex(t.rom.crc)),
md5 = binary(unhex(t.rom.md5)), md5 = binary(unhex(t.rom.md5)),
sha1 = binary(unhex(t.rom.sha1)), sha1 = binary(unhex(t.rom.sha1)),
serial = binary(t.rom.serial), serial = binary(t.serial or t.rom.serial),
} }
end end
end end