Fix missing include

This commit is contained in:
David Kuder 2023-01-31 19:33:59 -05:00
parent 5cb0c6dab3
commit ecb776e17b

View File

@ -3,6 +3,7 @@
#include "render.h" #include "render.h"
#include "character_rom.h" #include "character_rom.h"
#include "vgaout.h" #include "vgaout.h"
#include "common/config.h"
//#define PAGE2SEL (!(soft_switches & SOFTSW_80STORE) && (soft_switches & SOFTSW_PAGE_2)) //#define PAGE2SEL (!(soft_switches & SOFTSW_80STORE) && (soft_switches & SOFTSW_PAGE_2))
#define PAGE2SEL ((soft_switches & (SOFTSW_80STORE | SOFTSW_PAGE_2)) == SOFTSW_PAGE_2) #define PAGE2SEL ((soft_switches & (SOFTSW_80STORE | SOFTSW_PAGE_2)) == SOFTSW_PAGE_2)