DirectX problem.

masterlight

Member
Joined
Feb 18, 2017
Messages
13
Reaction score
0
Code:
Base address: 0x08420000, SA:MP base address: 0x05010000
Exception at address: 0x0FA2327D, Last function processed: end of proxyIDirect3DDevice9::BeginScene()
Bot Thread:
Cause: EXCEPTION_ACCESS_VIOLATION
Attempted to read from: 0x00000004
EAX: 0x00000004 || ESI: 0x0000ff3c
EBX: 0x0edd0bb0 || EDI: 0x0edd0f48
ECX: 0x0028f5cc || EBP: 0x004c8220
EDX: 0x3d267768 || ESP: 0x0028f574

What can cause this?

Function:
Code:
HRESULT proxyIDirect3DDevice9::BeginScene(void)
{
	traceLastFunc("proxyIDirect3DDevice9::BeginScene()");

	// return original function
	HRESULT ret = origIDirect3DDevice9->BeginScene();
	traceLastFunc("end of proxyIDirect3DDevice9::BeginScene()");
	return ret;
}
I couldn't find any origIDirect3DDevice9 to tell what it does.
Sobeit works properly, but when it comes to drawing tags - it crashes with this error, I think.
 
Top