From a6e7f601d34225fad1ea531a26b6c8e2b47ed186 Mon Sep 17 00:00:00 2001 From: terminx Date: Thu, 25 Oct 2018 23:31:40 +0000 Subject: [PATCH] Fix HIGH_PRECISION_SPRITE, broken when switching to std::min and std::max. git-svn-id: https://svn.eduke32.com/eduke32@7111 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/src/engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/build/src/engine.cpp b/source/build/src/engine.cpp index 7a9da3c08..ca9f68565 100644 --- a/source/build/src/engine.cpp +++ b/source/build/src/engine.cpp @@ -1856,7 +1856,7 @@ static WSHELPER_DECL void calc_vplcinc_sprite(uint32_t *vplc, int32_t *vinc, int *vinc = tmpvinc; // Clamp the vertical texture coordinate! - *vplc = min(max(0, tmpvplc), UINT32_MAX); + *vplc = min(max(0, tmpvplc), UINT32_MAX); } #endif