mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 21:38:40 +00:00
fix u128 make
This commit is contained in:
committed by
Ryan Fleury
parent
fc4e269211
commit
0dac1a91db
@@ -41,7 +41,7 @@ u128_zero(void)
|
|||||||
internal U128
|
internal U128
|
||||||
u128_make(U64 v0, U64 v1)
|
u128_make(U64 v0, U64 v1)
|
||||||
{
|
{
|
||||||
U128 v = {v0, v1};
|
U128 v = { .u64 = { v0, v1 }};
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user