GIF: implicit cast to u32 warning fix

This commit is contained in:
Ty
2025-11-24 18:07:25 -05:00
committed by Ty
parent 53598b970d
commit 8630893cb1
+1 -1
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();
}
};