Decrease VGA memory array size by one. Correction of an off by one error to ensure we stay within the appropriate memory.

This commit is contained in:
neviyn 2017-10-22 01:57:56 +01:00
parent 65a4b94be1
commit 5982c72a8a

View File

@ -1,7 +1,7 @@
import vga
type
VGAMemory = ptr array[0..2000, VGADoubleByte]
VGAMemory = ptr array[0..1999, VGADoubleByte]
const
vgaWidth = 80