From fa3db52cf7621fabd7df55415d77a756639e74ea Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sat, 4 Oct 2014 11:33:34 +0200 Subject: [PATCH] partially revert commit 9fd2f3dd8a47789c30a603cb30e99a97db7246f7 No need to add Linux sillyness in Windows file... (Hopefully close #323) --- plugins/spu2-x/src/Windows/AboutBox.cpp | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/plugins/spu2-x/src/Windows/AboutBox.cpp b/plugins/spu2-x/src/Windows/AboutBox.cpp index 463aea97c8..9b4c4ecc22 100644 --- a/plugins/spu2-x/src/Windows/AboutBox.cpp +++ b/plugins/spu2-x/src/Windows/AboutBox.cpp @@ -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 );