Update video.cpp

Should have been in there all along
This commit is contained in:
emendelson 2023-10-18 12:06:44 -04:00
parent 5b85a95e90
commit 1cb69c31b6
1 changed files with 6 additions and 0 deletions

View File

@ -481,6 +481,12 @@ int16 monitor_desc::driver_open(void)
// Init color palette (solid gray)
set_gray_palette();
// Enable rootless video
#ifdef VIDEO_ROOTLESS
extern int16 InstallRootlessProc(void);
return InstallRootlessProc();
#endif
return noErr;
}