mirror of https://github.com/PCSX2/pcsx2.git
Minor logging stuff.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2430 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
cbc043156d
commit
4327e93053
|
@ -169,8 +169,8 @@ __forceinline void PSX_INT( IopEventId n, s32 ecycle )
|
|||
// code to help trap those sort of things.
|
||||
|
||||
// Exception: IRQ16 - SIO - it drops ints like crazy when handling PAD stuff.
|
||||
//if( /*n!=16 &&*/ psxRegs.interrupt & (1<<n) )
|
||||
// Console.WriteLn( "***** IOP > Twice-thrown int on IRQ %d", n );
|
||||
if( /*n!=16 &&*/ psxRegs.interrupt & (1<<n) )
|
||||
DevCon.Warning( "***** IOP > Twice-thrown int on IRQ %d", n );
|
||||
|
||||
psxRegs.interrupt |= 1 << n;
|
||||
|
||||
|
|
|
@ -149,7 +149,7 @@ bool GSUtil::CheckDirectX()
|
|||
{
|
||||
printf("Cannot find %s\n", d3dx9_dll.c_str());
|
||||
|
||||
if(MessageBox(NULL, "You need to update directx, would you like to do it now?", "GSdx", MB_YESNO) == IDYES)
|
||||
if(MessageBox(NULL, "You need to update some directx libraries, would you like to do it now?", "GSdx", MB_YESNO) == IDYES)
|
||||
{
|
||||
const char* url = "http://www.microsoft.com/downloads/details.aspx?FamilyId=2DA43D38-DB71-4C1B-BC6A-9B6652CD92A3";
|
||||
|
||||
|
|
Loading…
Reference in New Issue