Minor speedup in texdecoder. More informative fifo error messages.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@249 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard
2008-08-20 18:31:48 +00:00
parent f2b45beb90
commit 683ba7ecae
3 changed files with 17 additions and 20 deletions

View File

@ -46,7 +46,7 @@ int FAKE_GetFifoSize()
{
if (size < readptr)
{
PanicAlert("GFX Fifo underrun encountered.");
PanicAlert("GFX Fifo underrun encountered (size = %i, readptr = %i)", size, readptr);
}
return (size - readptr);
}