pcsx2: Avoid trigraphs

Fixes a -Wtrigraph warning on clang.
This commit is contained in:
Jonathan Li 2018-07-31 22:47:11 +01:00
parent 354b11c619
commit cdee1875a5
1 changed files with 1 additions and 1 deletions

View File

@ -495,7 +495,7 @@ static __fi bool mfifoGIFrbTransfer()
{
u16 qwc = std::min(QWCinGIFMFIFO(gifch.madr), gifch.qwc);
if (qwc == 0) {
DevCon.Warning("GIF FIFO EMPTY before transfer (how??)");
DevCon.Warning("GIF FIFO EMPTY before transfer (how?)");
}
u8* src = (u8*)PSM(gifch.madr);