X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FSettings.cpp;h=97cdbb2d665b0f83665c3fd9158da7d950756271;hb=f8b5a2099dbe702e15dc5d010c7bc2e545b9cd74;hp=42d5d352c3a83dbe1b4ae027ca4dea311a8c1926;hpb=1a2ba15f8d736428892d2fae8206a1a51eb11c9f;p=lugaru.git diff --git a/Source/Settings.cpp b/Source/Settings.cpp index 42d5d35..97cdbb2 100644 --- a/Source/Settings.cpp +++ b/Source/Settings.cpp @@ -52,7 +52,6 @@ void DefaultSettings() velocityblur = 0; volume = 0.8f; ambientsound = 1; - debugmode = 0; crouchkey = SDL_SCANCODE_LSHIFT; jumpkey = SDL_SCANCODE_SPACE; @@ -128,8 +127,6 @@ void SaveSettings() opstream << damageeffects; opstream << "\nText:\n"; opstream << texttoggle; - opstream << "\nDebug:\n"; - opstream << debugmode; opstream << "\nShow Points:\n"; opstream << showpoints; opstream << "\nAlways Blur:\n"; @@ -244,8 +241,6 @@ bool LoadSettings() ipstream >> damageeffects; } else if ( !strncmp(setting, "Text", 4) ) { ipstream >> texttoggle; - } else if ( !strncmp(setting, "Debug", 5) ) { - ipstream >> debugmode; } else if ( !strncmp(setting, "Show Points", 11) ) { ipstream >> showpoints; } else if ( !strncmp(setting, "Always Blur", 11) ) {