X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/15521f07dc09a276839c46168201d31ee1ae4a97..67109eef29514092df311f5989fcd62c31e1d20f:/video/tnt2.c diff --git a/video/tnt2.c b/video/tnt2.c index 32e646a..3827393 100644 --- a/video/tnt2.c +++ b/video/tnt2.c @@ -4,6 +4,9 @@ #include #include #include +#include + +#include "generic.h" static void tnt2_getvmode(void *priv); @@ -27,12 +30,18 @@ static void tnt2_getvmode(void *priv) tnt2_fb.curmode.format = FB_RGB888; tnt2_fb.curmode.bytestride = 4; tnt2_fb.curmode.text = 0; + tnt2_fb.checksum_rect = checksum_rect_generic32; + tnt2_fb.copy_pixels = copy_pixels_generic32; break; case 0: tnt2_fb.curmode.text = 1; + tnt2_fb.checksum_rect = text_checksum; + tnt2_fb.copy_pixels = text_render; break; default: tnt2_fb.curmode.text = 1; + tnt2_fb.checksum_rect = text_checksum; + tnt2_fb.copy_pixels = text_render; outputf("Unknown TNT2 format %x", vgard(0x28)); break; }