mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-08-24 03:44:31 -05:00
Fixed EncryptText.cs
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user