fix formatting

This commit is contained in:
Eric Wasylishen 2015-05-17 00:51:27 -06:00
parent 9185c94d25
commit 54dd76cae2
1 changed files with 8 additions and 8 deletions

View File

@ -26,14 +26,14 @@
#define LIT2_VERSION 2
typedef struct litheader_s {
struct {
char ident[4];
int version;
} v1;
struct {
int numsurfs;
int lmsamples;
} v2;
struct {
char ident[4];
int version;
} v1;
struct {
int numsurfs;
int lmsamples;
} v2;
} litheader_t;
void WriteLitFile(const bsp2_t *bsp, const char *filename, int version);