mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-30 15:17:27 +00:00
14 lines
252 B
C++
14 lines
252 B
C++
#include "stdafx.h"
|
|
#include "rpcs3_version.h"
|
|
#include "git-version.h"
|
|
|
|
namespace rpcs3
|
|
{
|
|
std::string get_branch()
|
|
{
|
|
return RPCS3_GIT_BRANCH;
|
|
}
|
|
|
|
const extern utils::version version{ 0, 0, 4, utils::version_type::alpha, 1, RPCS3_GIT_VERSION };
|
|
}
|