GPU: Fix GLES compile error

This commit is contained in:
Stenzek 2024-04-02 00:27:28 +10:00
parent 5e05328dea
commit a432308908
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ CONSTANT float3 SENSITIVITY = float3(0.08f, 0.08f, 0.08f);
// Directly uses the pixel from the Current Field
o_col0.rgb = cur;
}
else if (row > 0 && row < u_height && mmax > 0.0f)
else if (row > 0u && row < u_height && mmax > 0.0f)
{
// Reconstructs the missing pixel as the average of the same pixel from the line above and the
// line below it in the Current Field.