Thief Gold crash. - by murphyj
SunBeam on 22/6/2009 at 07:10
What above error tells me is that the game crashes upon running an instruction at offset 0x1780FC (400000+1780FC = 5780FC). Might open up the .exe in a debugger and check that address out with a breakpoint. Most likely, an empty buffer of memory is trying to be written at and that's the cause of the crash. Will check it out, but without game running.. (don't have it here)..
EDIT: A quick look at it shows this:
Inline Image:
http://i44.tinypic.com/nv49hc.pngSo, my belief is that game calls up this function, then at 5780FC tries to get a value from an address which is invalid. ECX is main address, EAX is offset here, and 4 is the locator. [ECX] means "get value of ECX address" - which in this case will crash you, since ECX is 0. Will need to install Thief Gold and see if same thing happens here..