fallout2-ce/src/version.cc

10 lines
164 B
C++

#include "version.h"
#include <stdio.h>
// 0x4B4580
void versionGetVersion(char* dest)
{
sprintf(dest, "FALLOUT II %d.%02d", VERSION_MAJOR, VERSION_MINOR);
}