never sign machine profiles

This commit is contained in:
Glenn Maynard
2004-04-20 00:07:17 +00:00
parent f116061b9f
commit 70958ad3cb
4 changed files with 16 additions and 15 deletions
+2 -1
View File
@@ -5,6 +5,7 @@
#include "ScreenManager.h"
#include "MemoryCardManager.h"
#include "ThemeManager.h"
#include "PrefsManager.h"
#define NEXT_SCREEN THEME->GetMetric(m_sName,"NextScreen")
@@ -17,7 +18,7 @@ static void SaveMachineStatsToFirstMemCard()
CString sDir = MEM_CARD_MOUNT_POINT[pn];
sDir += "MachineProfile/";
PROFILEMAN->GetMachineProfile()->SaveAllToDir( sDir );
PROFILEMAN->GetMachineProfile()->SaveAllToDir( sDir, PREFSMAN->m_bSignProfileData );
SCREENMAN->SystemMessage( ssprintf("Machine stats saved to P%d card.",pn+1) );
return;
}