mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Fix "integer constant is too large for 'long' type" error
This commit is contained in:
parent
318a730c45
commit
de868d24c1
@ -1552,7 +1552,7 @@ void make_block(BlockMakeData *data)
|
|||||||
/*
|
/*
|
||||||
Create a block-specific seed
|
Create a block-specific seed
|
||||||
*/
|
*/
|
||||||
u32 blockseed = (u32)(data->seed%0x100000000) + full_node_min.Z*38134234
|
u32 blockseed = (u32)(data->seed%0x100000000ULL) + full_node_min.Z*38134234
|
||||||
+ full_node_min.Y*42123 + full_node_min.X*23;
|
+ full_node_min.Y*42123 + full_node_min.X*23;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user