mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
one more fix for inc in srcclean (nw)
This commit is contained in:
parent
c7a7a006d7
commit
791d322c4e
@ -111,7 +111,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
/* determine if we are a C file */
|
||||
ext = strrchr(argv[1], '.');
|
||||
is_c_file = (ext && (core_stricmp(ext, ".c") == 0 || core_stricmp(ext, ".h") == 0 || core_stricmp(ext, ".cpp") == 0 || core_stricmp(ext, ".lst") == 0));
|
||||
is_c_file = (ext && (core_stricmp(ext, ".c") == 0 || core_stricmp(ext, ".h") == 0 || core_stricmp(ext, ".cpp") == 0 || core_stricmp(ext, ".inc") == 0 || core_stricmp(ext, ".lst") == 0));
|
||||
is_xml_file = (ext && core_stricmp(ext, ".xml") == 0);
|
||||
|
||||
/* rip through it */
|
||||
|
Loading…
Reference in New Issue
Block a user