app/paint: ALGORITHM_* values are unsigned integers

Unlike GNU compilers, MSVC is more strict and
thinks they are integers so fails.
This commit is contained in:
Bruno Lopes 2025-11-28 17:34:00 -03:00
parent 232337550d
commit fb3c319e95
No known key found for this signature in database

View file

@ -97,7 +97,7 @@ extern "C"
*/
enum
enum Algorithm : guint
{
ALGORITHM_PAINT_BUF = 1u << 31,
ALGORITHM_PAINT_MASK = 1u << 30,