1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-15 07:54:13 +00:00

Fix bbtsub.c compilation without XWINDOW or DOS. (#293)

Without those, it wasn't including `devif.h`, which is where
we define `min` and `max`. I make an assumption here that any
new display would be using the current display device support
code.
This commit is contained in:
Bruce Mitchener 2021-01-25 14:15:05 +07:00 committed by GitHub
parent 0bcc8718de
commit 971794a14c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,10 +76,10 @@ extern IOPAGE *IOPage68K;
#include "dbprint.h"
#if (defined(DOS) || defined(XWINDOW))
#if !defined(SUNDISPLAY)
#include "devif.h"
extern DspInterface currentdsp;
#endif /* DOS || WXINDOW */
#endif /* SUNDISPLAY */
#ifdef COLOR
extern int MonoOrColor;