mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-20 09:11:01 +00:00
Fix minor errors
This commit is contained in:
parent
7ff1a4455d
commit
7f9b5cb0a8
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
|||
/// \file font.h
|
||||
/// \brief Font setup
|
||||
|
||||
#ifndef __FONT_H_
|
||||
#ifndef __FONT_H__
|
||||
#define __FONT_H__
|
||||
|
||||
#define MAX_FONTS 32
|
||||
|
|
|
@ -242,7 +242,7 @@ void HU_Init(void)
|
|||
|
||||
if (!dedicated)
|
||||
{
|
||||
#define DIM( start, size ) ( font.start = start, font.size = size )
|
||||
#define DIM( s, n ) ( font.start = s, font.size = n )
|
||||
#define ADIM( name ) DIM (name ## _FONTSTART, name ## _FONTSIZE)
|
||||
#define PR( s ) strcpy(font.prefix, s)
|
||||
#define DIG( n ) ( font.digits = n )
|
||||
|
|
Loading…
Reference in a new issue