diff --git a/src/newgal/sysvideo.h b/src/newgal/sysvideo.h index 18781cc5..55839c6b 100644 --- a/src/newgal/sysvideo.h +++ b/src/newgal/sysvideo.h @@ -313,6 +313,9 @@ extern VideoBootStrap STGFB_bootstrap; #ifdef _MGGAL_USVFB extern VideoBootStrap USVFB_bootstrap; #endif +#ifdef _MGGAL_DRM +extern VideoBootStrap DRM_bootstrap; +#endif /* This is the current video device */ extern GAL_VideoDevice *current_video; diff --git a/src/newgal/video.c b/src/newgal/video.c index 5c17b277..e7ea2213 100644 --- a/src/newgal/video.c +++ b/src/newgal/video.c @@ -143,6 +143,9 @@ static VideoBootStrap *bootstrap[] = { #endif #ifdef _MGGAL_USVFB &USVFB_bootstrap, +#endif +#ifdef _MGGAL_DRM + &DRM_bootstrap, #endif NULL };