This commit is contained in:
alfred 2006-08-14 06:47:58 +00:00
parent fb840aa8f7
commit 7b086bab60
1 changed files with 4 additions and 0 deletions

View File

@ -71,6 +71,10 @@ public class ModuleInfo {
} else if (list[i].contains(".h") || list[i].contains(".H")) {
localmodulesources.add(list[i]);
localmoduleheaders.add(list[i]); //the case that several .inf or .msa found is not concerned
} else if (list[i].contains(".dxs")) {
localmodulesources.add(list[i]);
} else if (list[i].contains(".uni")) {
localmodulesources.add(list[i]);
} else if (list[i].contains(".inf")) {
if (ui.yesOrNo("Found .inf file : " + list[i] + "\nUse this file as this module's .inf ?")) {
hasInf = true;