mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-21 09:30:55 +00:00
Merge pull request #22 from jake-b/master
Assume binary file type for .ntkc and .sym files
This commit is contained in:
commit
5bab4d85eb
@ -269,6 +269,9 @@ namespace OS
|
||||
// MrC / MrCpp temp file.
|
||||
if (ext == "n")
|
||||
return true;
|
||||
// Newton C++ Tools output
|
||||
if (ext == "ntkc")
|
||||
return true;
|
||||
break;
|
||||
|
||||
case 'o':
|
||||
@ -276,7 +279,12 @@ namespace OS
|
||||
return true;
|
||||
if (ext == "obj")
|
||||
return true;
|
||||
break;
|
||||
|
||||
case 's':
|
||||
// Newton C++ Intermediate file
|
||||
if (ext == "sym")
|
||||
return true;
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user