Skip to content

Commit

Permalink
Win32: Fixed Unicode version text string
Browse files Browse the repository at this point in the history
The definition was missing if the build number was unspecified
for the build.
  • Loading branch information
skyjake committed Sep 24, 2011
1 parent c2ccfca commit 4f9eb06
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion doomsday/engine/portable/include/dd_version.h
Expand Up @@ -79,7 +79,10 @@
#elif defined(DOOMSDAY_RELEASE_NAME)
# define DOOMSDAY_VERSION_TEXT (DOOMSDAY_VERSION_BASE "-" DOOMSDAY_RELEASE_NAME)
#else
# define DOOMSDAY_VERSION_TEXT DOOMSDAY_VERSION_BASE
# define DOOMSDAY_VERSION_TEXT DOOMSDAY_VERSION_BASE
# if defined(WIN32) && defined(UNICODE)
# define DOOMSDAY_VERSION_TEXT_WSTR TEXT(DOOMSDAY_VERSION_BASE)
# endif
#endif

#define DOOMSDAY_PROJECTURL "http://sourceforge.net/projects/deng/"
Expand Down

0 comments on commit 4f9eb06

Please sign in to comment.