mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 22:21:05 -05:00
Fixed EncryptText.cs
This commit is contained in:
parent
910844fb1b
commit
ef25d51dd6
|
|
@ -65,13 +65,10 @@ namespace DSPRE.MessageEnc
|
|||
{
|
||||
decode.Append(textChar.ToString("X4"));
|
||||
hasSpecialCharacter = false;
|
||||
}
|
||||
if (isCompressed)
|
||||
{
|
||||
} else if (isCompressed) {
|
||||
int shift = 0;
|
||||
int trans = 0;
|
||||
while (true)
|
||||
{
|
||||
while (true){
|
||||
int compChar = textChar >> shift;
|
||||
if (shift >= 0xF)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user