mirror of
https://github.com/libretro/Mesen.git
synced 2025-01-07 09:20:57 +00:00
34 lines
623 B
C#
34 lines
623 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using Mesen.GUI.Forms;
|
|
|
|
namespace Mesen.GUI.Debugger
|
|
{
|
|
public partial class frmFadeSpeed : BaseConfigForm
|
|
{
|
|
public frmFadeSpeed(int initialValue)
|
|
{
|
|
InitializeComponent();
|
|
nudFrameCount.Value = initialValue;
|
|
}
|
|
|
|
public int FadeSpeed
|
|
{
|
|
get { return (int)nudFrameCount.Value; }
|
|
}
|
|
|
|
protected override void OnShown(EventArgs e)
|
|
{
|
|
base.OnShown(e);
|
|
nudFrameCount.Focus();
|
|
}
|
|
}
|
|
}
|