fixed code to work with new resource settings interface.

This commit is contained in:
morkt
2018-01-08 20:04:23 +04:00
parent 2e2e447c42
commit cd4e1174af
56 changed files with 179 additions and 158 deletions

View File

@@ -31,7 +31,6 @@ using System.IO;
using System.Linq;
using System.Text;
using System.Xml;
using GameRes.Formats.Properties;
using GameRes.Formats.Strings;
using GameRes.Utility;
@@ -244,8 +243,8 @@ namespace GameRes.Formats.Entis
public override ResourceOptions GetDefaultOptions ()
{
return new NoaOptions {
Scheme = Settings.Default.NOAScheme,
PassPhrase = Settings.Default.NOAPassPhrase,
Scheme = Properties.Settings.Default.NOAScheme,
PassPhrase = Properties.Settings.Default.NOAPassPhrase,
};
}