mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-14 16:12:24 -07: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
|
||||
u128_make(U64 v0, U64 v1)
|
||||
{
|
||||
U128 v = {v0, v1};
|
||||
U128 v = { .u64 = { v0, v1 }};
|
||||
return v;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user