mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-19 16:11:25 +00:00
Default q3map2 for 32 bit systems
This commit is contained in:
parent
4ace24c00a
commit
3eb0a5dbb1
1 changed files with 6 additions and 1 deletions
|
@ -3211,7 +3211,12 @@ void PrefsDlg::LoadPrefs(){
|
|||
|
||||
mLocalPrefs.GetPref( Q3MAP2TEX_KEY, &m_bQ3Map2Texturing, TRUE );
|
||||
#ifdef _WIN32
|
||||
mLocalPrefs.GetPref( X64Q3MAP2_KEY, &m_bx64q3map2, TRUE );
|
||||
if ( sizeof(void*) == 4 ) { //32bit test
|
||||
mLocalPrefs.GetPref( X64Q3MAP2_KEY, &m_bx64q3map2, FALSE );
|
||||
}
|
||||
else {
|
||||
mLocalPrefs.GetPref( X64Q3MAP2_KEY, &m_bx64q3map2, TRUE );
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef ATIHACK_812
|
||||
|
|
Loading…
Reference in a new issue