mirror of
https://github.com/godotengine/godot.git
synced 2024-12-27 11:24:59 +08:00
Merge pull request #33706 from madmiraal/fix-c4146-warning
Fix Visual Studio throwing C4146 warning.
This commit is contained in:
commit
17ee8d0465
@ -3769,8 +3769,8 @@ ShaderLanguage::Node *ShaderLanguage::_reduce_expression(BlockNode *p_block, Sha
|
||||
nv.sint = -cn->values[i].sint;
|
||||
} break;
|
||||
case TYPE_UINT: {
|
||||
// FIXME: This can't work on uint
|
||||
nv.uint = -cn->values[i].uint;
|
||||
// Intentionally wrap the unsigned int value, because GLSL does.
|
||||
nv.uint = 0 - cn->values[i].uint;
|
||||
} break;
|
||||
case TYPE_FLOAT: {
|
||||
nv.real = -cn->values[i].real;
|
||||
|
Loading…
Reference in New Issue
Block a user