diff options
Diffstat (limited to 'plugins/Dbx_mmap_SA/encrypt.cpp')
-rw-r--r-- | plugins/Dbx_mmap_SA/encrypt.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Dbx_mmap_SA/encrypt.cpp b/plugins/Dbx_mmap_SA/encrypt.cpp index a42d79eae2..0837e5cbd8 100644 --- a/plugins/Dbx_mmap_SA/encrypt.cpp +++ b/plugins/Dbx_mmap_SA/encrypt.cpp @@ -32,16 +32,16 @@ void Encrypt(char*msg,BOOL up) int jump;
if (up)
{
- jump=5;
+ jump = 5;
}
else
{
- jump=-5;
+ jump = -5;
}
- for (i=0;msg[i];i++)
+ for (i = 0;msg[i];i++)
{
- msg[i]=msg[i]+jump;
+ msg[i] = msg[i]+jump;
}
}
|