1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Debug dump cmd in LLE mode.

This commit is contained in:
Sergey Lipskiy 2020-06-28 11:06:37 +07:00
parent 1467582e8f
commit 1b36d5740b

View File

@ -606,6 +606,9 @@ void RDP_ProcessRDPList()
RDP.w2 = RDP.cmd_data[RDP.cmd_cur + 2];
RDP.w3 = RDP.cmd_data[RDP.cmd_cur + 3];
RSP.cmd = cmd;
#ifdef DEBUG_DUMP
DebugMsg(DEBUG_LOW, "CMD=0x%02lX W0=0x%08lX W1=0x%08lX\n", cmd, RDP.w0, RDP.w1);
#endif
LLETriangle::get().flush(cmd);
LLEcmd[cmd](RDP.w0, RDP.w1);