vcproj: For Debug config enable, incremental linking for E&C.

Remove old commented out code.
This commit is contained in:
tomch 2012-08-11 22:02:35 +00:00
parent 10f9545085
commit 4e9e4669da
3 changed files with 6 additions and 18 deletions

View File

@ -183,7 +183,7 @@
Name="VCLinkerTool"
AdditionalDependencies="htmlhelp.lib comctl32.lib ddraw.lib winmm.lib dsound.lib dxguid.lib version.lib strmiids.lib dinput8.lib user32.lib gdi32.lib Advapi32.lib shell32.lib Comdlg32.lib ole32.lib wsock32.lib"
OutputFile=".\Debug\Applewin.exe"
LinkIncremental="1"
LinkIncremental="2"
SuppressStartupBanner="true"
AdditionalManifestDependencies=""type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='X86' publicKeyToken='6595b64144ccf1df' language='*'""
GenerateDebugInformation="true"

View File

@ -285,7 +285,7 @@ bool CPageConfig::IsOkToBenchmark(HWND hWnd, const bool bConfigChanged)
TEXT("unsaved work.\n\n")
TEXT("Are you sure you want to do this?"),
TEXT("Benchmarks"),
MB_ICONQUESTION | MB_YESNO | MB_SETFOREGROUND) == IDNO)
MB_ICONQUESTION | MB_OKCANCEL | MB_SETFOREGROUND) == IDCANCEL)
return false;
return true;

View File

@ -44,8 +44,8 @@ Disk
. Enhanced disk speed WM_USER_RESTART Why?
. HDD enable WM_USER_RESTART
Advanced
. Save State WM_USER_SAVESTATE TODO: Forces PSBTN_OK (since any config changes are discarded)
. Load State WM_USER_LOADSTATE TODO: Forces PSBTN_OK (since any config changes are discarded)
. Save State WM_USER_SAVESTATE
. Load State WM_USER_LOADSTATE
. Clone WM_USER_RESTART
. MrFreeze Rom WM_USER_RESTART
@ -61,12 +61,12 @@ Design:
- Show 1 restart + confirm msg (if necessary)
- Cancel will rollback to original config (for above items), but other items will be applied
. Load State button
- Action it immediately?
- Don't action it immediately.
- .aws should contain config (but doesn't), so should override any config changes.
- so this can just discard any config changes
- if any config change, then show msg box to say they won't be applied
. Save State button
- Action it immediately?
- Don't action it immediately.
- save state applies to current config (prior to restart).
- so this can just discard any config changes
- if any config change, then show msg box to say they won't be applied
@ -318,7 +318,6 @@ void CPropertySheetHelper::ApplyNewConfig(void)
if (CONFIG_CHANGED(m_Apple2Type))
{
SaveComputerType(m_ConfigNew.m_Apple2Type);
//g_Apple2Type = m_ConfigNew.m_Apple2Type; // Is this necessary?
}
if (CONFIG_CHANGED(m_Slot[4]))
@ -327,28 +326,17 @@ void CPropertySheetHelper::ApplyNewConfig(void)
if (CONFIG_CHANGED(m_Slot[5]))
SetSlot5(m_ConfigNew.m_Slot[5]);
//if (m_ConfigNew.m_Slot[4] == CT_MockingboardC || m_ConfigNew.m_Slot[4] == CT_Phasor)
//{
// MB_SetSoundcardType(m_ConfigNew.m_Slot[4]); // Is this necessary?
//}
//else
//{
// MB_SetSoundcardType(CT_Empty); // Is this necessary?
//}
if (CONFIG_CHANGED(m_bEnhanceDisk))
REGSAVE(TEXT(REGVALUE_ENHANCE_DISK_SPEED), m_ConfigNew.m_bEnhanceDisk);
if (CONFIG_CHANGED(m_bEnableHDD))
{
REGSAVE(TEXT(REGVALUE_HDD_ENABLED), m_ConfigNew.m_bEnableHDD ? 1 : 0);
//HD_SetEnabled(m_ConfigNew.m_bEnableHDD); // Is this necessary?
}
if (CONFIG_CHANGED(m_bEnableTheFreezesF8Rom))
{
REGSAVE(TEXT(REGVALUE_THE_FREEZES_F8_ROM), m_ConfigNew.m_bEnableTheFreezesF8Rom);
//sg_PropertySheet.SetTheFreezesF8Rom(m_ConfigNew.m_bEnableTheFreezesF8Rom); // Is this necessary?
}
}