Revert "Switched back NewCursor to the original name j_SetCursor"
This reverts commit 4c93cca082.
NewCursor was the actual name, j_<function> are just remaining
reversing names
This commit is contained in:
parent
0b29cbb97b
commit
b6baa965bb
3 changed files with 4 additions and 4 deletions
|
|
@ -429,7 +429,7 @@ void __fastcall SetCursor(int i)
|
|||
}
|
||||
// 4B8C9C: using guessed type int cursH;
|
||||
|
||||
void __fastcall j_SetCursor(int i) {
|
||||
void __fastcall NewCursor(int i) {
|
||||
SetCursor(i);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ void __cdecl InitCursor();
|
|||
void __cdecl FreeCursor();
|
||||
void __fastcall SetICursor(int i);
|
||||
void __fastcall SetCursor(int i);
|
||||
void __fastcall j_SetCursor(int i);
|
||||
void __fastcall NewCursor(int i);
|
||||
void __cdecl InitLevelCursor();
|
||||
void __cdecl CheckTown();
|
||||
void __cdecl CheckRportal();
|
||||
|
|
|
|||
|
|
@ -222,7 +222,7 @@ void __fastcall DoResurrect(int pnum, int rid)
|
|||
AddMissile(plr[rid].WorldX, plr[rid].WorldY, plr[rid].WorldX, plr[rid].WorldY, 0, MIS_RESURRECTBEAM, 0, pnum, 0, 0);
|
||||
|
||||
if ( pnum == myplr )
|
||||
j_SetCursor(CURSOR_HAND);
|
||||
NewCursor(CURSOR_HAND);
|
||||
|
||||
if ( (_BYTE)rid != LOBYTE(-1) && plr[rid]._pHitPoints == 0 )
|
||||
{
|
||||
|
|
@ -314,7 +314,7 @@ void __fastcall DoHealOther(int pnum, int rid)
|
|||
int j;
|
||||
|
||||
if ( pnum == myplr )
|
||||
j_SetCursor(CURSOR_HAND);
|
||||
NewCursor(CURSOR_HAND);
|
||||
|
||||
if ( (_BYTE)rid != LOBYTE(-1) && (plr[rid]._pHitPoints >> 6) > 0 )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue