mirror of https://github.com/PCSX2/pcsx2.git
partially revert commit 9fd2f3dd8a
No need to add Linux sillyness in Windows file... (Hopefully close #323)
This commit is contained in:
parent
6fe9ee387d
commit
fa3db52cf7
|
@ -32,17 +32,10 @@ static LRESULT WINAPI AboutProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lPar
|
||||||
|
|
||||||
wchar_t outstr[256];
|
wchar_t outstr[256];
|
||||||
if( IsDevBuild )
|
if( IsDevBuild )
|
||||||
swprintf_s( outstr, L"Build %lld"
|
swprintf_s( outstr, L"Build %lld -- Compiled on " _T(__DATE__), SVN_REV );
|
||||||
#ifndef openSUSE
|
|
||||||
"-- Compiled on " _T(__DATE__)
|
|
||||||
#endif
|
|
||||||
, SVN_REV );
|
|
||||||
else
|
else
|
||||||
swprintf_s( outstr, L"Release v%d.%d"
|
swprintf_s( outstr, L"Release v%d.%d -- Compiled on " _T(__DATE__),
|
||||||
#ifndef openSUSE
|
VersionInfo::Release, VersionInfo::Revision );
|
||||||
"-- Compiled on " _T(__DATE__)
|
|
||||||
#endif
|
|
||||||
, VersionInfo::Release, VersionInfo::Revision );
|
|
||||||
|
|
||||||
SetWindowText( GetDlgItem(hDlg, IDC_LABEL_VERSION_INFO), outstr );
|
SetWindowText( GetDlgItem(hDlg, IDC_LABEL_VERSION_INFO), outstr );
|
||||||
ShowWindow( hDlg, true );
|
ShowWindow( hDlg, true );
|
||||||
|
|
Loading…
Reference in New Issue