From 24783924d0116fc836a796b0a3aa09cd00121b1e Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 4 Jan 2020 01:21:22 +0100 Subject: [PATCH] pgraph: fix int return from bool method --- panda/src/pgraph/shaderInput.I | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/pgraph/shaderInput.I b/panda/src/pgraph/shaderInput.I index a7318cdc2b..2ace5d614b 100644 --- a/panda/src/pgraph/shaderInput.I +++ b/panda/src/pgraph/shaderInput.I @@ -502,7 +502,7 @@ operator < (const ShaderInput &other) const { if (_stored_vector[3] != other._stored_vector[3]) { return _stored_vector[3] < other._stored_vector[3]; } - return 0; + return false; case M_numeric: return _stored_ptr._ptr < other._stored_ptr._ptr;