- Fixed a copy-and-paste error in win32/i_main.cpp for 64-bit mode.

- Tweaked OPL centering a little.


SVN r950 (trunk)
This commit is contained in:
Randy Heit 2008-04-30 00:44:45 +00:00
commit 8040cdd4ff
3 changed files with 21 additions and 10 deletions

View file

@ -1111,7 +1111,7 @@ LONG WINAPI CatchAllExceptions (LPEXCEPTION_POINTERS info)
#ifndef _M_X64
info->ContextRecord->Eip = (DWORD_PTR)SleepForever;
#else
info->ContextRecord->Rip = (DWORD_PTR)ExitFatally;
info->ContextRecord->Rip = (DWORD_PTR)SleepForever;
#endif
QueueUserAPC (ExitFatally, MainThread, 0);
}