oops - fix busted render handle compare

This commit is contained in:
Ryan Fleury
2024-11-11 09:48:11 -08:00
parent 31f25d0fe7
commit 5aeee47f98
+1 -1
View File
@@ -19,7 +19,7 @@ r_handle_zero(void)
internal B32
r_handle_match(R_Handle a, R_Handle b)
{
return a.u64[0] == b.u64[0] && a.u64[1] == b.u64[1];
return MemoryMatchStruct(&a, &b);
}
////////////////////////////////