changeset 14984:e8a969370f33

(BLACK_PIX_DEFAULT, WHITE_PIX_DEFAULT): Use PALETTERGB instead of RGB.
author Geoff Voelker <voelker@cs.washington.edu>
date Thu, 11 Apr 1996 04:13:07 +0000
parents 88b23d545848
children c0edd24119bc
files src/w32term.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/w32term.h	Thu Apr 11 04:12:47 1996 +0000
+++ b/src/w32term.h	Thu Apr 11 04:13:07 1996 +0000
@@ -25,8 +25,8 @@
 /* The class of this X application.  */
 #define EMACS_CLASS "Emacs"
 
-#define BLACK_PIX_DEFAULT(f) RGB(0,0,0)
-#define WHITE_PIX_DEFAULT(f) RGB(255,255,255)
+#define BLACK_PIX_DEFAULT(f) PALETTERGB(0,0,0)
+#define WHITE_PIX_DEFAULT(f) PALETTERGB(255,255,255)
 
 #define FONT_WIDTH(f)	((f)->tm.tmAveCharWidth)
 #define FONT_HEIGHT(f)	((f)->tm.tmHeight)