IInputPollable - Now with tabs instead of spaces.

This commit is contained in:
scrimpeh 2016-01-26 11:46:52 +01:00
parent ef1bc65ce6
commit e4a1a517cd
6 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ namespace BizHawk.Emulation.Cores.Calculators
public bool IsLagFrame
{
get { return _isLag; }
set { _isLag = value; }
set { _isLag = value; }
}
}
}

View File

@ -7,7 +7,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
public bool IsLagFrame
{
get { return _islag; }
set { _islag = value; }
set { _islag = value; }
}
public int LagCount

View File

@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
public bool IsLagFrame
{
get { return _islag; }
set { _islag = value; }
set { _islag = value; }
}
public IInputCallbackSystem InputCallbacks { get; private set; }

View File

@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800
public bool IsLagFrame
{
get { return _islag; }
set { _islag = value; }
set { _islag = value; }
}
public IInputCallbackSystem InputCallbacks { get; private set; }

View File

@ -14,7 +14,7 @@ namespace BizHawk.Emulation.Cores.ColecoVision
public bool IsLagFrame
{
get { return _isLag; }
set { _isLag = value; }
set { _isLag = value; }
}
public IInputCallbackSystem InputCallbacks

View File

@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
public bool IsLagFrame
{
get { return islag; }
set { islag = value; }
set { islag = value; }
}
public IInputCallbackSystem InputCallbacks