Fixed bug in PHYSFS_VERSION macro.
This commit is contained in:
parent
0ddd2b1f6d
commit
91ce826b1e
6
physfs.h
6
physfs.h
|
@ -170,9 +170,9 @@ typedef struct __PHYSFS_VERSION__
|
||||||
#define PHYSFS_VER_PATCH 0
|
#define PHYSFS_VER_PATCH 0
|
||||||
|
|
||||||
#define PHYSFS_VERSION(x) { \
|
#define PHYSFS_VERSION(x) { \
|
||||||
x->major = PHYSFS_VER_MAJOR; \
|
(x)->major = PHYSFS_VER_MAJOR; \
|
||||||
x->minor = PHYSFS_VER_MINOR; \
|
(x)->minor = PHYSFS_VER_MINOR; \
|
||||||
x->patch = PHYSFS_VER_PATCH; \
|
(x)->patch = PHYSFS_VER_PATCH; \
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue