forked from jewalky/srvmgr
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from serg-bloim/fix/spell_duration_overflow
Fix for spell duration overflow
- Loading branch information
Showing
5 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
void __declspec(naked) fix_spell_duration_overflow_0053973E() | ||
{ // 0053973E | ||
__asm | ||
{ | ||
cmp eax, 0xFFFF | ||
jle short ret_point | ||
mov eax, 0xFFFF | ||
ret_point: | ||
// restore overridden code begin | ||
mov edx, [ebp-0xC] | ||
mov [edx+10h], ax | ||
// restore overridden code | ||
// jump back | ||
mov edx, 0x00539745 | ||
jmp edx | ||
} | ||
} | ||
// FUNCTIONS BELOW ARE DIFFERENT | ||
void __declspec(naked) fix_spell_duration_overflow() | ||
{ // 0053BFA1 | ||
__asm | ||
{ | ||
cmp eax, 0xFFFF | ||
jle short ret_point | ||
mov eax, 0xFFFF | ||
ret_point: | ||
mov edx, [ebp-0x44] | ||
mov [edx+0x42], ax | ||
pop eax | ||
inc eax | ||
push eax | ||
ret | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters