fallout2-ce/src/version.cc

14 lines
209 B
C++
Raw Normal View History

2022-05-19 01:51:26 -07:00
#include "version.h"
#include <stdio.h>
2022-09-23 05:43:44 -07:00
namespace fallout {
2022-05-19 01:51:26 -07:00
// 0x4B4580
void versionGetVersion(char* dest)
{
sprintf(dest, "FALLOUT II %d.%02d", VERSION_MAJOR, VERSION_MINOR);
}
2022-09-23 05:43:44 -07:00
} // namespace fallout