mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 08:53:02 +00:00
[BOOTVID] Move the VGA code into the PC directory. (#2510)
This commit is contained in:
parent
1610367fe2
commit
df23bb779e
7 changed files with 4 additions and 4 deletions
|
@ -3,9 +3,9 @@ spec2def(bootvid.dll bootvid.spec ADD_IMPORTLIB)
|
||||||
|
|
||||||
if((ARCH STREQUAL "i386") OR (ARCH STREQUAL "amd64"))
|
if((ARCH STREQUAL "i386") OR (ARCH STREQUAL "amd64"))
|
||||||
list(APPEND SOURCE
|
list(APPEND SOURCE
|
||||||
i386/bootvid.c
|
i386/pc/bootvid.c
|
||||||
i386/bootdata.c
|
i386/pc/bootdata.c
|
||||||
i386/vga.c)
|
i386/pc/vga.c)
|
||||||
elseif(ARCH STREQUAL "arm")
|
elseif(ARCH STREQUAL "arm")
|
||||||
list(APPEND SOURCE
|
list(APPEND SOURCE
|
||||||
arm/bootvid.c)
|
arm/bootvid.c)
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#define BOOTCHAR_WIDTH 8 // Each character line is encoded in a UCHAR.
|
#define BOOTCHAR_WIDTH 8 // Each character line is encoded in a UCHAR.
|
||||||
|
|
||||||
#ifndef _M_ARM
|
#ifndef _M_ARM
|
||||||
#include "vga.h"
|
#include "i386/pc/vga.h"
|
||||||
#endif /* _M_ARM */
|
#endif /* _M_ARM */
|
||||||
|
|
||||||
/* Bitmap Header */
|
/* Bitmap Header */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue