Re-add Debug haptics channel to all cores, but only in Debug config
This commit is contained in:
parent
cb88e98f39
commit
ad1659eb68
|
@ -10,7 +10,12 @@ namespace BizHawk.Emulation.Common
|
||||||
/// <seealso cref="IEmulator" />
|
/// <seealso cref="IEmulator" />
|
||||||
public class ControllerDefinition
|
public class ControllerDefinition
|
||||||
{
|
{
|
||||||
public ControllerDefinition() {}
|
public ControllerDefinition()
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
HapticsChannels.Add("Debug");
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
public ControllerDefinition(ControllerDefinition source)
|
public ControllerDefinition(ControllerDefinition source)
|
||||||
: this()
|
: this()
|
||||||
|
|
Loading…
Reference in New Issue