move all URLs into ProductInfo.h

This commit is contained in:
Chris Danford
2005-10-28 03:10:48 +00:00
parent 6e5b3a5ed8
commit 092b5d969d
6 changed files with 10 additions and 5 deletions
@@ -132,7 +132,7 @@ void ArchHooks_Win32::CheckVideoDriver()
if( info.sDescription != sPrimaryDeviceName )
continue;
/* "IntelR 810 Chipset Graphics Driver PV 2.1". I get a lot of crash reports
/* "IntelR 810 Chipset Graphics Driver PV 2.1". There are a lot of crash reports
* with people using this version. */
if( Regex( "Intel.* 810 Chipset Graphics Driver PV 2.1").Compare( info.sDescription ) )
{
@@ -3,6 +3,7 @@
#include "RageUtil.h"
#include "CommonMetrics.h" // for WINDOW_TITLE
#include "ThemeManager.h"
#include "ProductInfo.h"
#include "archutils/win32/AppInstance.h"
#include "archutils/win32/GotoURL.h"
@@ -113,7 +114,7 @@ static BOOL CALLBACK ErrorWndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lP
}
break;
case IDC_BUTTON_REPORT:
GotoURL( "http://sourceforge.net/tracker/?func=add&group_id=37892&atid=421366" );
GotoURL( REPORT_BUG_URL );
break;
case IDC_BUTTON_RESTART:
Win32RestartProgram();