sifadil / pcsx2-playground

Automatically exported from code.google.com/p/pcsx2-playground
2 stars 0 forks source link

HW.cpp log error #137

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
In Hw.cpp, line 330 there is

HW_LOG( "Hardware Read32 at 0x%x (%s), value=0x%x\n", regName, mem,
psHu32(mem) );

It is obvious type, should be

HW_LOG( "Hardware Read32 at 0x%x (%s), value=0x%x\n", regName, mem,
psHu32(mem) );

Original issue reported on code.google.com by Zeydl...@gmail.com on 30 Jan 2009 at 8:51

GoogleCodeExporter commented 8 years ago
Thanks, looks like I missed those when I decided to reorder the layout of the 
log. 
Fixed in r661.

Original comment by Jake.Stine on 30 Jan 2009 at 9:06