[saco] Implement CallRwRenderStateSet, CallRwRenderStateGet

This commit is contained in:
RD42 2024-02-05 21:19:22 +08:00
parent d853e72abe
commit 4daffd4d83

View File

@ -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()
{
}