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:
parent
232337550d
commit
fb3c319e95
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ extern "C"
|
|||
*/
|
||||
|
||||
|
||||
enum
|
||||
enum Algorithm : guint
|
||||
{
|
||||
ALGORITHM_PAINT_BUF = 1u << 31,
|
||||
ALGORITHM_PAINT_MASK = 1u << 30,
|
||||
|
|
|
|||
Loading…
Reference in a new issue