mirror of
https://github.com/holub/mame
synced 2025-04-19 15:11:37 +03:00
fix makedep when encoutering GAMEL (nw)
This commit is contained in:
parent
60172c6387
commit
9740102e64
@ -203,8 +203,7 @@ def parse_file_for_drivers(root, srcfile):
|
||||
content = content.strip()
|
||||
if len(content)>0:
|
||||
if content.startswith('COMP') or content.startswith('CONS') or content.startswith('GAME') or content.startswith('SYST') or content.startswith('GAMEL'):
|
||||
name = content[4:]
|
||||
splitname = name.rsplit(',', 14)
|
||||
splitname = content.split(',', 3)
|
||||
if len(splitname)>1:
|
||||
drivers.append(splitname[1])
|
||||
return 0
|
||||
|
Loading…
Reference in New Issue
Block a user