Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperOptimizer committed Nov 19, 2024
1 parent bf70a04 commit e8c9c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vesuvius-c.h
Original file line number Diff line number Diff line change
Expand Up @@ -2004,7 +2004,7 @@ int vs_chunk_graft(chunk* dest, chunk* src, s32 src_start[static 3], s32 dest_st
for (int z = 0; z < dims[0]; z++) {
for (int y = 0; y < dims[1]; y++) {
for (int x = 0; x < dims[2]; x++) {
f32 value = vs_chunk_get(src, src_start[0] + z, src_start[1] + y, src_start[02] + x);
f32 value = vs_chunk_get(src, src_start[0] + z, src_start[1] + y, src_start[2] + x);
vs_chunk_set(dest, dest_start[0] + z, dest_start[1] + y, dest_start[2] + x, value);
}
}
Expand Down

0 comments on commit e8c9c21

Please sign in to comment.