Skip to content

Commit

Permalink
Changing default settings to 4px@60fps.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed May 27, 2015
1 parent b714138 commit a48ac33
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions SonicBGScrollSaver/Settings.cs
Expand Up @@ -12,13 +12,17 @@ namespace SonicBGScrollSaver
public class Settings
{
[DefaultValue(true)]
[IniAlwaysInclude]
public bool PlayMusic { get; set; }
[DefaultValue(100)]
[IniAlwaysInclude]
public int MusicVolume { get; set; }
[DefaultValue(30)]
[DefaultValue(60)]
[IniAlwaysInclude]
public byte FramesPerSecond { get; set; }
public bool FpsCounter { get; set; }
[DefaultValue(8)]
[DefaultValue(4)]
[IniAlwaysInclude]
public short ScrollSpeed { get; set; }
[TypeConverter(typeof(CustomTimeSpanConverter))]
public TimeSpan DisplayTime { get; set; }
Expand Down

0 comments on commit a48ac33

Please sign in to comment.