mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 14:20:08 +01:00
12 lines
265 B
C++
12 lines
265 B
C++
#include "rx/Version.hpp"
|
|
|
|
rx::Version rx::getVersion() {
|
|
return {
|
|
.raw = RX_RAW_VERSION,
|
|
.tag = static_cast<VersionTag>(RX_TAG),
|
|
.tagVersion = RX_TAG_VERSION,
|
|
.gitTag = RX_GIT_REV,
|
|
.dirty = (RX_GIT_DIRTY != 0),
|
|
};
|
|
}
|