diff options
| author | Roman971 <32455037+Roman971@users.noreply.github.com> | 2020-10-13 18:32:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-13 12:32:19 -0400 |
| commit | d02153707ef8700b69cc9da79dae3abcbaedc67e (patch) | |
| tree | 4d4b58c9c842490c803ec4d0b37d3887acf9f176 /src/code/z_lib.c | |
| parent | 57db7ba526f2d7d59c53ac187778f07c84e6759d (diff) | |
A few minor fixes/cleanups (#449)
Diffstat (limited to 'src/code/z_lib.c')
| -rw-r--r-- | src/code/z_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_lib.c b/src/code/z_lib.c index a69770ca2..5c6336890 100644 --- a/src/code/z_lib.c +++ b/src/code/z_lib.c @@ -331,7 +331,7 @@ void IChain_Apply_Vec3fdiv1000(u8* ptr, InitChainEntry* ichain) { f32 val; vec = (Vec3f*)(ptr + ichain->offset); - osSyncPrintf("pp=%x data=%f\n", vec, (f64)(ichain->value / 1000.0f)); + osSyncPrintf("pp=%x data=%f\n", vec, ichain->value / 1000.0f); val = ichain->value / 1000.0f; vec->z = val; |
