fixed typo and added VideoQuitFullScreen()

This commit is contained in:
cebix 2001-07-03 19:26:51 +00:00
parent d0a4b3e5fc
commit 680ff996eb

View File

@ -537,7 +537,7 @@ void VideoExit(void)
* Set palette
*/
void video_set_palette(uint8 *pal, in num)
void video_set_palette(uint8 *pal, int num)
{
if ((display_type == DISPLAY_SCREEN_P96 || display_type == DISPLAY_SCREEN_CGFX)
&& !IsDirectMode(VideoMonitor.mode)) {
@ -567,6 +567,15 @@ void video_switch_to_mode(const video_mode &mode)
}
/*
* Close down full-screen mode (if bringing up error alerts is unsafe while in full-screen mode)
*/
void VideoQuitFullScreen(void)
{
}
/*
* Video message handling (not neccessary under AmigaOS, handled by periodic_func())
*/