refactored INT archives implementation.

This commit is contained in:
morkt
2015-11-17 21:33:24 +04:00
parent a67f319694
commit 2b592c89f3
2 changed files with 64 additions and 147 deletions

View File

@@ -29,7 +29,7 @@ namespace GameRes.Formats.GUI
void OnPassphraseChanged (object sender, TextChangedEventArgs e)
{
var widget = sender as TextBox;
uint key = IntOpener.EncodePassPhrase (widget.Text);
uint key = KeyData.EncodePassPhrase (widget.Text);
Passkey.Text = key.ToString ("X8");
}