Advertisement
Benji23245

Untitled

Oct 18th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. // void __usercall(signed int ringCount@<eax>, unsigned __int8 digits@<bl>, NJS_SPRITE *hud@<esi>)
  2. static const void *const HudDisplayRingsPtr = (void*)0x425960;
  3. static inline void HudDisplayRings(signed int ringCount, unsigned __int8 digits, NJS_SPRITE *hud)
  4. {
  5. __asm
  6. {
  7. mov esi, [hud]
  8. mov bl, [digits]
  9. mov eax, [ringCount]
  10. call HudDisplayRingsPtr
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement