Merge pull request #6597 from starfrost013/bugfixes

Get rid of some entirely unused video functions
This commit is contained in:
Miran Grča
2025-12-21 17:15:07 +01:00
committed by GitHub
3 changed files with 0 additions and 36 deletions

View File

@@ -482,21 +482,3 @@ video_is_cga(void)
{
return (video_get_type() == VIDEO_FLAG_TYPE_CGA);
}
int
video_is_ega_vga(void)
{
return (video_get_type() == VIDEO_FLAG_TYPE_SPECIAL);
}
int
video_is_8514(void)
{
return (video_get_type() == VIDEO_FLAG_TYPE_8514);
}
int
video_is_xga(void)
{
return (video_get_type() == VIDEO_FLAG_TYPE_XGA);
}