Skip to content

Commit

Permalink
graphlib: correct source file name to valid module name
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalak committed Oct 7, 2024
1 parent edf404a commit 9f7d55a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bld/graphlib/c/8x8font.c → bld/graphlib/c/font8x8.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Open Watcom Project
*
* Copyright (c) 2002-2021 The Open Watcom Contributors. All Rights Reserved.
* Copyright (c) 2002-2024 The Open Watcom Contributors. All Rights Reserved.
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
Expand Down Expand Up @@ -31,7 +31,7 @@


#include "gdefn.h"
#include "8x8font.h"
#include "font8x8.h"

char _WCI86FAR _8x8Font[] = {
'\x00', '\x00', '\x00', '\x00', '\x00', '\x00', '\x00', '\x00',
Expand Down
2 changes: 1 addition & 1 deletion bld/graphlib/c/fontsupp.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#include "exedos.h"
#endif
#if !defined( _DEFAULT_WINDOWS )
#include "8x8font.h"
#include "font8x8.h"
#endif


Expand Down
4 changes: 2 additions & 2 deletions bld/graphlib/c/putchar.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Open Watcom Project
*
* Copyright (c) 2002-2023 The Open Watcom Contributors. All Rights Reserved.
* Copyright (c) 2002-2024 The Open Watcom Contributors. All Rights Reserved.
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
Expand Down Expand Up @@ -34,7 +34,7 @@
#if !defined( _DEFAULT_WINDOWS )
#include "realmod.h"
#include "gbios.h"
#include "8x8font.h"
#include "font8x8.h"
#include "hercfont.h"
#endif

Expand Down
2 changes: 1 addition & 1 deletion bld/graphlib/graphics.mif
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ common_objs = &
$(_subdir_)zrectang.obj

eng_nonwin_objs = &
$(_subdir_)8x8font.obj &
$(_subdir_)font8x8.obj &
$(_subdir_)bit.obj &
$(_subdir_)gstklow.obj &
$(_subdir_)hercfont.obj &
Expand Down
2 changes: 1 addition & 1 deletion bld/graphlib/h/8x8font.h → bld/graphlib/h/font8x8.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Open Watcom Project
*
* Copyright (c) 2002-2021 The Open Watcom Contributors. All Rights Reserved.
* Copyright (c) 2002-2024 The Open Watcom Contributors. All Rights Reserved.
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
Expand Down

0 comments on commit 9f7d55a

Please sign in to comment.