GIF: implicit cast to u32 warning fix

This commit is contained in:
Ty 2025-11-22 16:30:11 -05:00 committed by Ty
parent 53598b970d
commit 8630893cb1

View File

@ -521,7 +521,7 @@ struct Gif_Path
// GS Packets that MTGS hasn't yet processed
u32 GetPendingGSPackets()
{
return mtvu.gsPackQueue.size();
return (u32)mtvu.gsPackQueue.size();
}
};