mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-10 10:41:26 +01:00
15 lines
278 B
C++
15 lines
278 B
C++
#include "stdafx.h"
|
|
#include "gui_game_info.h"
|
|
#include "localized.h"
|
|
|
|
std::string gui_game_info::GetGameVersion() const
|
|
{
|
|
if (info.app_ver == Localized().category.unknown.toStdString())
|
|
{
|
|
// Fall back to Disc/Pkg Revision
|
|
return info.version;
|
|
}
|
|
|
|
return info.app_ver;
|
|
}
|