src/video

This commit is contained in:
Jasmine Iwanek
2022-03-13 21:43:45 -04:00
parent 3d0db78ead
commit 3b73ce330c
50 changed files with 2506 additions and 2526 deletions

View File

@@ -1030,12 +1030,15 @@ im1024_speed_changed(void *priv)
const device_t im1024_device = {
"ImageManager 1024",
"im1024",
DEVICE_ISA | DEVICE_AT, 0,
im1024_init, im1024_close, NULL,
{ im1024_available },
im1024_speed_changed,
NULL,
NULL
.name = "ImageManager 1024",
.internal_name = "im1024",
.flags = DEVICE_ISA | DEVICE_AT,
.local = 0,
.init = im1024_init,
.close = im1024_close,
.reset = NULL,
{ .available = im1024_available },
.speed_changed = im1024_speed_changed,
.force_redraw = NULL,
.config = NULL
};