Renamed tpl_drv_* to api_drv_* (a more fitting name)
[tpg/acess2.git] / Modules / x86 / VGAText / vga.c
index e926313..d958956 100644 (file)
@@ -4,7 +4,7 @@
 #define DEBUG  0
 #include <acess.h>
 #include <fs_devfs.h>
-#include <tpl_drv_video.h>
+#include <api_drv_video.h>
 #include <modules.h>
 
 // === CONSTANTS ===
@@ -230,10 +230,10 @@ void VGA_int_SetCursor(Sint16 x, Sint16 y)
         int    pos = x+y*VGA_WIDTH;
        if(x == -1 || y == -1)
                pos = -1;
-    outb(0x3D4, 14);
-    outb(0x3D5, pos >> 8);
-    outb(0x3D4, 15);
-    outb(0x3D5, pos);
+       outb(0x3D4, 14);
+       outb(0x3D5, pos >> 8);
+       outb(0x3D4, 15);
+       outb(0x3D5, pos);
 }
 
 void VGA_2D_Fill(void *Ent, Uint16 X, Uint16 Y, Uint16 W, Uint16 H, Uint32 Colour)

UCC git Repository :: git.ucc.asn.au