diff --git a/src/RDP.cpp b/src/RDP.cpp index 31eeef79..67bef1fd 100644 --- a/src/RDP.cpp +++ b/src/RDP.cpp @@ -1,5 +1,6 @@ #include #include +#include #include "N64.h" #include "RSP.h" #include "RDP.h" @@ -577,7 +578,7 @@ void RDP_ProcessRDPList() } if (RDP.cmd_cur + CmdLength[cmd] / 4 > MAXCMD) - memcpy(RDP.cmd_data + MAXCMD, RDP.cmd_data, CmdLength[cmd] - (MAXCMD - RDP.cmd_cur) * 4); + ::memcpy(RDP.cmd_data + MAXCMD, RDP.cmd_data, CmdLength[cmd] - (MAXCMD - RDP.cmd_cur) * 4); // execute the command u32 w0 = RDP.cmd_data[RDP.cmd_cur+0];