mirror of https://github.com/mgba-emu/mgba.git
Tools: Allow perf.py to accept zipped games
This commit is contained in:
parent
47661def29
commit
854d49d1b7
|
@ -76,7 +76,7 @@ class Suite(object):
|
|||
def collect_tests(self):
|
||||
roms = []
|
||||
for f in os.listdir(self.cwd):
|
||||
if f.endswith('.gba'):
|
||||
if f.endswith('.gba') or f.endswith('.zip'):
|
||||
roms.append(f)
|
||||
roms.sort()
|
||||
for rom in roms:
|
||||
|
|
Loading…
Reference in New Issue