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];
|
||||
if( IsDevBuild )
|
||||
swprintf_s( outstr, L"Build %lld"
|
||||
#ifndef openSUSE
|
||||
"-- Compiled on " _T(__DATE__)
|
||||
#endif
|
||||
, SVN_REV );
|
||||
swprintf_s( outstr, L"Build %lld -- Compiled on " _T(__DATE__), SVN_REV );
|
||||
else
|
||||
swprintf_s( outstr, L"Release v%d.%d"
|
||||
#ifndef openSUSE
|
||||
"-- Compiled on " _T(__DATE__)
|
||||
#endif
|
||||
, VersionInfo::Release, VersionInfo::Revision );
|
||||
swprintf_s( outstr, L"Release v%d.%d -- Compiled on " _T(__DATE__),
|
||||
VersionInfo::Release, VersionInfo::Revision );
|
||||
|
||||
SetWindowText( GetDlgItem(hDlg, IDC_LABEL_VERSION_INFO), outstr );
|
||||
ShowWindow( hDlg, true );
|
||||
|
|
Loading…
Reference in New Issue