ipu: DATA is an u32 not a pointer

Fix compilers warning.
This commit is contained in:
Gregory Hainaut 2016-09-07 22:06:27 +02:00
parent cac822f785
commit a6c25b7bff
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ void ipuSoftReset()
ipuRegs.top = 0; ipuRegs.top = 0;
ipu_cmd.clear(); ipu_cmd.clear();
ipuRegs.cmd.BUSY = 0; ipuRegs.cmd.BUSY = 0;
ipuRegs.cmd.DATA = NULL; // required for Enthusia - Professional Racing after fix, or will freeze at start of next video. ipuRegs.cmd.DATA = 0; // required for Enthusia - Professional Racing after fix, or will freeze at start of next video.
memzero(g_BP); memzero(g_BP);
} }