From e4f67a80717008e69a08a6af00bcf1892c6deac9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 13 Sep 2004 04:55:15 +0000 Subject: [PATCH] Save some options that make the game easier. They don't have the "crazy options for last song" problem, and they're useful; some people don't like mines, some people don't want to hurt their hands playing with quads, etc. (I'm not sure if there's any point to saving NoJumps, but it doesn't seem to matter.) --- stepmania/src/PlayerOptions.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stepmania/src/PlayerOptions.cpp b/stepmania/src/PlayerOptions.cpp index 3020c2a45c..3c077c5bc7 100644 --- a/stepmania/src/PlayerOptions.cpp +++ b/stepmania/src/PlayerOptions.cpp @@ -648,6 +648,11 @@ CString PlayerOptions::GetSavedPrefsString() const SAVE( m_fScrollBPM ); SAVE( m_fScrolls[SCROLL_REVERSE] ); SAVE( m_fPerspectiveTilt ); + SAVE( m_bTransforms[TRANSFORM_NOHOLDS] ); + SAVE( m_bTransforms[TRANSFORM_NOMINES] ); + SAVE( m_bTransforms[TRANSFORM_NOJUMPS] ); + SAVE( m_bTransforms[TRANSFORM_NOHANDS] ); + SAVE( m_bTransforms[TRANSFORM_NOQUADS] ); SAVE( m_sNoteSkin ); #undef SAVE return po_prefs.GetString();