mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
[saco] Implement CallRwRenderStateSet, CallRwRenderStateGet
This commit is contained in:
parent
d853e72abe
commit
4daffd4d83
@ -167,6 +167,30 @@ void SetupDirectories()
|
||||
|
||||
//----------------------------------------------------
|
||||
|
||||
void CallRwRenderStateSet(int state, int option)
|
||||
{
|
||||
_asm push option
|
||||
_asm push state
|
||||
_asm mov ebx, 0xC97B24
|
||||
_asm mov eax, [ebx]
|
||||
_asm call dword ptr [eax+32]
|
||||
_asm add esp, 8
|
||||
}
|
||||
|
||||
//----------------------------------------------------
|
||||
|
||||
void CallRwRenderStateGet(int state, int *option)
|
||||
{
|
||||
_asm push option
|
||||
_asm push state
|
||||
_asm mov ebx, 0xC97B24
|
||||
_asm mov eax, [ebx]
|
||||
_asm call dword ptr [eax+36]
|
||||
_asm add esp, 8
|
||||
}
|
||||
|
||||
//----------------------------------------------------
|
||||
|
||||
void TheGraphicsLoop()
|
||||
{
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user