aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--vgasrc/stdvga.h2
-rw-r--r--vgasrc/stdvgamodes.c (renamed from vgasrc/vgatables.c)2
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 31eb2f9b..beb8fd04 100644
--- a/Makefile
+++ b/Makefile
@@ -171,7 +171,7 @@ $(OUT)bios.bin.elf $(OUT)bios.bin: $(OUT)rom.o tools/checkrom.py
# VGA src files
SRCVGA=src/output.c src/util.c src/pci.c \
vgasrc/vgabios.c vgasrc/vgafb.c vgasrc/vgafonts.c vgasrc/vbe.c \
- vgasrc/vgatables.c vgasrc/stdvga.c vgasrc/stdvgaio.c \
+ vgasrc/stdvga.c vgasrc/stdvgamodes.c vgasrc/stdvgaio.c \
vgasrc/clext.c vgasrc/bochsvga.c vgasrc/geodevga.c
CFLAGS16VGA = $(CFLAGS16INC) -g -Isrc
diff --git a/vgasrc/stdvga.h b/vgasrc/stdvga.h
index 0beb3450..9372127d 100644
--- a/vgasrc/stdvga.h
+++ b/vgasrc/stdvga.h
@@ -82,7 +82,7 @@ struct saveDACcolors {
u8 color_select;
};
-// vgatables.c
+// stdvgamodes.c
struct vgamode_s *stdvga_find_mode(int mode);
void stdvga_build_video_param(void);
diff --git a/vgasrc/vgatables.c b/vgasrc/stdvgamodes.c
index 4a5350dc..94e273f7 100644
--- a/vgasrc/vgatables.c
+++ b/vgasrc/stdvgamodes.c
@@ -1,4 +1,4 @@
-// Tables used by VGA bios
+// Standard VGA mode information.
//
// Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2001-2008 the LGPL VGABios developers Team