[vulkan] Correct the type for MaxParticles

uint is used for other things, so this is more correct (and stops qfcc
from complaining (legitimately)).
This commit is contained in:
Bill Currie 2025-02-16 18:55:58 +09:00
parent c75272efe6
commit ed84bbb532

View file

@ -1,6 +1,6 @@
#version 450
layout (constant_id = 0) const int MaxParticles = 2048;
layout (constant_id = 0) const uint MaxParticles = 2048;
layout (local_size_x = 1, local_size_y = 1) in;