mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix issue in the C version of the classic renderer where someone had attempted to negate a bool
git-svn-id: https://svn.eduke32.com/eduke32@7012 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
2f65866167
commit
7f5f22e184
1 changed files with 1 additions and 1 deletions
|
@ -340,7 +340,7 @@ void vlineasm4(bssize_t cnt, char *p)
|
|||
|
||||
#ifdef USE_SATURATE_VPLC
|
||||
static int32_t g_saturate; // -1 if saturating vplc is requested, 0 else
|
||||
# define set_saturate(dosaturate) g_saturate = -!!dosaturate
|
||||
# define set_saturate(dosaturate) g_saturate = -(int)!!dosaturate
|
||||
#else
|
||||
# define set_saturate(dosaturate) UNREFERENCED_PARAMETER(dosaturate)
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue