misc cleanups in Client.Common

This commit is contained in:
adelikat 2020-03-01 15:05:42 -06:00
parent db21af9e59
commit 0ffac58ce8
1 changed files with 3 additions and 5 deletions

View File

@ -282,7 +282,7 @@ namespace BizHawk.Client.Common.movie.import
}
private SimpleController GbController()
private static SimpleController GbController()
{
return new SimpleController
{
@ -293,9 +293,7 @@ namespace BizHawk.Client.Common.movie.import
};
}
private SimpleController GbaController()
{
return new SimpleController { Definition = GBA.GBAController };
}
private static SimpleController GbaController()
=> new SimpleController { Definition = GBA.GBAController };
}
}