Browse Source

Fixed duplicated WHITENESS value in BLACKNESS constant

Joe 5 years ago
parent
commit
c83592629d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/sys/win32/gdi32.odin

+ 1 - 1
core/sys/win32/gdi32.odin

@@ -4,7 +4,7 @@ package win32
 foreign import "system:gdi32.lib"
 foreign import "system:gdi32.lib"
 
 
 WHITENESS :: 0x00FF0062;
 WHITENESS :: 0x00FF0062;
-BLACKNESS :: 0x00FF0062;
+BLACKNESS :: 0x00000042;
 
 
 @(default_calling_convention = "std")
 @(default_calling_convention = "std")
 foreign gdi32 {
 foreign gdi32 {