vgabios: Rename vgatables.c to stdvgamodes.c.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2012-01-14 23:20:05 -05:00
parent aad3b695b7
commit 4ad2d107be
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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);

View File

@ -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