]> Joshua Wise's Git repositories - netwatch.git/blobdiff - video/tnt2.c
Ass.
[netwatch.git] / video / tnt2.c
index 73a3d0b6eafd484a61f5a68a9a0a4d7febc8ca97..5ab5f0219b25faa43e3f79e032206a0f5a530b6f 100644 (file)
@@ -12,7 +12,7 @@ static struct fbdevice tnt2_fb = {
 
 static unsigned int vgard(unsigned char a)
 {
-       outb(a, 0x3D4);
+       outb(0x3D4, a);
        return (unsigned int)inb(0x3D5);
 }
 
@@ -22,7 +22,7 @@ static void tnt2_getvmode(void *priv)
        tnt2_fb.curmode.yres = (vgard(0x12) | (vgard(0x7) & 2) << 7 | (vgard(0x7) & 0x40) << 3) + 1;
        switch (vgard(0x28))
        {
-       case 4:
+       case 3:
                tnt2_fb.curmode.format = FB_RGB888;
                tnt2_fb.curmode.bytestride = 4;
                tnt2_fb.curmode.text = 0;
@@ -31,7 +31,8 @@ static void tnt2_getvmode(void *priv)
                tnt2_fb.curmode.text = 1;
                break;
        default:
-               outputf("Unknown TNT2 format %d", vgard(0x28));
+               tnt2_fb.curmode.text = 1;
+               outputf("Unknown TNT2 format %x", vgard(0x28));
                break;
        }
 }
This page took 0.021451 seconds and 4 git commands to generate.