Navigation Menu

Skip to content

Commit

Permalink
Fixed bug in PHYSFS_VERSION macro.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 15, 2001
1 parent 0ddd2b1 commit 91ce826
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions physfs.h
Expand Up @@ -170,9 +170,9 @@ typedef struct __PHYSFS_VERSION__
#define PHYSFS_VER_PATCH 0

#define PHYSFS_VERSION(x) { \
x->major = PHYSFS_VER_MAJOR; \
x->minor = PHYSFS_VER_MINOR; \
x->patch = PHYSFS_VER_PATCH; \
(x)->major = PHYSFS_VER_MAJOR; \
(x)->minor = PHYSFS_VER_MINOR; \
(x)->patch = PHYSFS_VER_PATCH; \
}

/**
Expand Down

0 comments on commit 91ce826

Please sign in to comment.