X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Modules%2Fx86%2FVGAText%2Fvga.c;fp=Modules%2Fx86%2FVGAText%2Fvga.c;h=1ae1ece69010c6a5bf17b1450b43c2d8f042462d;hb=d479cee1b9f03381f4e0f3ec9aa9b5cd1240f004;hp=e926313002ec659039156fdcee35bb2a2bd28429;hpb=01b023f2329c2c5b3421231ff7ad3c7a214ac27c;p=tpg%2Facess2.git diff --git a/Modules/x86/VGAText/vga.c b/Modules/x86/VGAText/vga.c index e9263130..1ae1ece6 100644 --- a/Modules/x86/VGAText/vga.c +++ b/Modules/x86/VGAText/vga.c @@ -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)