fallout2-ce/src/version.cc

14 lines
229 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
2022-12-08 12:05:50 -08:00
void versionGetVersion(char* dest, size_t size)
2022-05-19 01:51:26 -07:00
{
2022-12-08 12:05:50 -08:00
snprintf(dest, size, "FALLOUT II %d.%02d", VERSION_MAJOR, VERSION_MINOR);
2022-05-19 01:51:26 -07:00
}
2022-09-23 05:43:44 -07:00
} // namespace fallout