mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
* Added version number and branch name to gs_frame and log file. This also involved making the files that generate git-version.h , get the branch.
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, 3, utils::version_type::alpha, 1, RPCS3_GIT_VERSION };
|
|
}
|