mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
fix build errors (nw)
This commit is contained in:
parent
892233c4d4
commit
b1182ed63b
@ -59,9 +59,9 @@ def parse_file(srcfile):
|
|||||||
if not all(((c >='a' and c<='z') or (c>='0' and c<='9') or c=='_') for c in drivname):
|
if not all(((c >='a' and c<='z') or (c>='0' and c<='9') or c=='_') for c in drivname):
|
||||||
sys.stderr.write("%s:%d - Invalid character in driver \"%s\"\n" % (srcfile, linenum, drivname))
|
sys.stderr.write("%s:%d - Invalid character in driver \"%s\"\n" % (srcfile, linenum, drivname))
|
||||||
return 1
|
return 1
|
||||||
else:
|
else:
|
||||||
if (curr_source == '') or (len(sourcelist)==0) or (curr_source in sourcelist):
|
if (curr_source == '') or (len(sourcelist)==0) or (curr_source in sourcelist):
|
||||||
drivlist.append(drivname)
|
drivlist.append(drivname)
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
def parse_filter_file(srcfile):
|
def parse_filter_file(srcfile):
|
||||||
@ -113,7 +113,7 @@ def parse_filter_file(srcfile):
|
|||||||
if not all(((c >='a' and c<='z') or (c>='0' and c<='9') or c=='_' or c=='.' or c=='-') for c in sourcename):
|
if not all(((c >='a' and c<='z') or (c>='0' and c<='9') or c=='_' or c=='.' or c=='-') for c in sourcename):
|
||||||
sys.stderr.write("%s:%d - Invalid character in driver \"%s\"\n" % (srcfile, linenum, sourcename))
|
sys.stderr.write("%s:%d - Invalid character in driver \"%s\"\n" % (srcfile, linenum, sourcename))
|
||||||
return 1
|
return 1
|
||||||
else:
|
else:
|
||||||
sourcelist.append(sourcename)
|
sourcelist.append(sourcename)
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
// XInput header
|
// XInput header
|
||||||
#include <Xinput.h>
|
#include <xinput.h>
|
||||||
|
|
||||||
#undef interface
|
#undef interface
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user