Skip to content
Snippets Groups Projects
Commit ebc2da46 authored by Tazpn's avatar Tazpn
Browse files

Default to first if no satisfactory app found.

parent e1c0f2b6
No related branches found
No related tags found
No related merge requests found
......@@ -532,6 +532,9 @@ void NifImporter::LoadIniSettings()
} else {
appSettings = FindAppSetting(curapp);
}
if (appSettings == NULL && !TheAppSettings.empty()){
appSettings = &TheAppSettings.front();
}
useBiped = GetIniValue<bool>(NifImportSection, "UseBiped", false);
skeletonCheck = GetIniValue<string>(NifImportSection, "SkeletonCheck", "Bip*");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment