From 9a04319aafa6bf7bb9d87a4c9e31abdac54a5d22 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 12 Feb 2003 18:03:59 +0000 Subject: [PATCH] move installations list to a subkey, so it won't clutter things if we add more keys later --- stepmania/src/smpackage/smpackageUtil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/smpackage/smpackageUtil.h b/stepmania/src/smpackage/smpackageUtil.h index 9b85c9ac83..62d7ca7030 100644 --- a/stepmania/src/smpackage/smpackageUtil.h +++ b/stepmania/src/smpackage/smpackageUtil.h @@ -7,7 +7,7 @@ inline void WriteStepManiaInstallDirs( const CStringArray& asInstallDirsToWrite { CRegistry Reg; Reg.SetRootKey(HKEY_LOCAL_MACHINE); - Reg.SetKey("Software\\StepMania\\smpackage", TRUE); // create if not already present + Reg.SetKey("Software\\StepMania\\smpackage\\Installations", TRUE); // create if not already present int i; @@ -32,7 +32,7 @@ inline void GetStepManiaInstallDirs( CStringArray& asInstallDirsOut ) CRegistry Reg; Reg.SetRootKey(HKEY_LOCAL_MACHINE); - Reg.SetKey("Software\\StepMania\\smpackage", TRUE); // create if not already present + Reg.SetKey("Software\\StepMania\\smpackage\\Installations", TRUE); // create if not already present for( int i=0; i<100; i++ ) {