rpcsx/rx/src/Version.cpp

12 lines
265 B
C++
Raw Normal View History

2023-11-10 21:41:44 +01:00
#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),
};
}