Probably something stupid I did, but whenever I exit my program I get:
The thread 'Win64 Thread' (0x12a0) has exited with code 0 (0x0).
First-chance exception at 0x690adf99 in isometric.exe: 0xC0000005: Access violation reading location 0x0000000000000010.
Unhandled exception at 0x690adf99 in isometric.exe: 0xC0000005: Access violation reading location 0x0000000000000010.
and crt0dat.c pops open and points to this block of code:
void __cdecl __crtExitProcess (
int status
)
{
__crtCorExitProcess(status);
/*
* Either mscoree.dll isn't loaded,
* or CorExitProcess isn't exported from mscoree.dll,
* or CorExitProcess returned (should never happen).
* Just call ExitProcess.
*/
ExitProcess(status);
}
Any idea what might cause this?