Remove unnecessary cast
This commit is contained in:
parent
511e4b9233
commit
956fdd180f
|
@ -41,7 +41,7 @@ impl BrickmapCache {
|
||||||
|
|
||||||
// TODO: change type of upload data. Will need some messyness with bytemucking probably
|
// TODO: change type of upload data. Will need some messyness with bytemucking probably
|
||||||
// but should lead to clearer data definitions
|
// but should lead to clearer data definitions
|
||||||
let mut upload_data = vec![0u32; 4 + 532 * max_upload_count as usize];
|
let mut upload_data = vec![0u32; 4 + 532 * max_upload_count];
|
||||||
upload_data[0] = max_upload_count as u32;
|
upload_data[0] = max_upload_count as u32;
|
||||||
|
|
||||||
let mut buffers = BulkBufferBuilder::new()
|
let mut buffers = BulkBufferBuilder::new()
|
||||||
|
|
Loading…
Reference in New Issue