Skip to content

Commit

Permalink
programs: Fix a format warning.
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Bogacki <[email protected]>
  • Loading branch information
Saancreed committed Aug 22, 2024
1 parent b7bffb6 commit cc3cc2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/vkd3d-rs-parse/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ static void dump_root_signature(const struct vkd3d_root_signature_desc2 *rs)
printf(" AddrV: #%x\n", sampler->address_v);
printf(" AddrW: #%x\n", sampler->address_w);
printf(" MipLODBias: %f\n", sampler->mip_lod_bias);
printf(" MaxAniso: %f\n", sampler->max_anisotropy);
printf(" MaxAniso: %u\n", sampler->max_anisotropy);
printf(" Comparison: #%x\n", sampler->comparison_func);
printf(" StaticBorderColor: #%x\n", sampler->border_color);
printf(" MinLOD: %f\n", sampler->min_lod);
Expand Down

0 comments on commit cc3cc2a

Please sign in to comment.