mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
oops - fix busted render handle compare
This commit is contained in:
@@ -19,7 +19,7 @@ r_handle_zero(void)
|
|||||||
internal B32
|
internal B32
|
||||||
r_handle_match(R_Handle a, R_Handle b)
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
|
|||||||
Reference in New Issue
Block a user