Remove some unneeded usings
This commit is contained in:
parent
9c91d33bb8
commit
022157ead0
10 changed files with 5 additions and 18 deletions
|
@ -1,4 +1,3 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gal
|
namespace Ryujinx.Graphics.Gal
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
using OpenTK;
|
|
||||||
using OpenTK.Graphics.OpenGL;
|
using OpenTK.Graphics.OpenGL;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
using OpenTK.Graphics.OpenGL;
|
using OpenTK.Graphics.OpenGL;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gal.OpenGL
|
namespace Ryujinx.Graphics.Gal.OpenGL
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
using OpenTK.Graphics.OpenGL;
|
using OpenTK.Graphics.OpenGL;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gal.OpenGL
|
namespace Ryujinx.Graphics.Gal.OpenGL
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
using System;
|
using static Ryujinx.Graphics.Gal.Shader.ShaderDecodeHelper;
|
||||||
|
|
||||||
using static Ryujinx.Graphics.Gal.Shader.ShaderDecodeHelper;
|
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gal.Shader
|
namespace Ryujinx.Graphics.Gal.Shader
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
using ChocolArm64.Memory;
|
using ChocolArm64.Memory;
|
||||||
using Ryujinx.Graphics.Gal;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace Ryujinx.HLE.Gpu.Texture
|
namespace Ryujinx.HLE.Gpu.Texture
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
using ChocolArm64.Memory;
|
|
||||||
using Ryujinx.HLE.Logging;
|
using Ryujinx.HLE.Logging;
|
||||||
using Ryujinx.HLE.OsHle.Ipc;
|
using Ryujinx.HLE.OsHle.Ipc;
|
||||||
using Ryujinx.HLE.OsHle.SystemState;
|
using Ryujinx.HLE.OsHle.SystemState;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
using ChocolArm64.Memory;
|
|
||||||
using Ryujinx.HLE.Gpu.Memory;
|
using Ryujinx.HLE.Gpu.Memory;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
|
|
@ -2,10 +2,8 @@ using Ryujinx.HLE.OsHle.Services.Acc;
|
||||||
using Ryujinx.HLE.OsHle.Services.Am;
|
using Ryujinx.HLE.OsHle.Services.Am;
|
||||||
using Ryujinx.HLE.OsHle.Services.Apm;
|
using Ryujinx.HLE.OsHle.Services.Apm;
|
||||||
using Ryujinx.HLE.OsHle.Services.Aud;
|
using Ryujinx.HLE.OsHle.Services.Aud;
|
||||||
using Ryujinx.HLE.OsHle.Services.Bcat;
|
|
||||||
using Ryujinx.HLE.OsHle.Services.Bsd;
|
using Ryujinx.HLE.OsHle.Services.Bsd;
|
||||||
using Ryujinx.HLE.OsHle.Services.Caps;
|
using Ryujinx.HLE.OsHle.Services.Caps;
|
||||||
using Ryujinx.HLE.OsHle.Services.Friend;
|
|
||||||
using Ryujinx.HLE.OsHle.Services.FspSrv;
|
using Ryujinx.HLE.OsHle.Services.FspSrv;
|
||||||
using Ryujinx.HLE.OsHle.Services.Hid;
|
using Ryujinx.HLE.OsHle.Services.Hid;
|
||||||
using Ryujinx.HLE.OsHle.Services.Lm;
|
using Ryujinx.HLE.OsHle.Services.Lm;
|
||||||
|
@ -97,10 +95,10 @@ namespace Ryujinx.HLE.OsHle.Services
|
||||||
|
|
||||||
case "lm":
|
case "lm":
|
||||||
return new ILogService();
|
return new ILogService();
|
||||||
|
|
||||||
case "mm:u":
|
case "mm:u":
|
||||||
return new IRequest();
|
return new IRequest();
|
||||||
|
|
||||||
case "nfp:user":
|
case "nfp:user":
|
||||||
return new IUserManager();
|
return new IUserManager();
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@ using OpenTK.Input;
|
||||||
using Ryujinx.Graphics.Gal;
|
using Ryujinx.Graphics.Gal;
|
||||||
using Ryujinx.HLE;
|
using Ryujinx.HLE;
|
||||||
using Ryujinx.HLE.Input;
|
using Ryujinx.HLE.Input;
|
||||||
using Ryujinx.UI.Input;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
|
||||||
|
@ -152,7 +151,7 @@ namespace Ryujinx
|
||||||
|
|
||||||
//Controller Input
|
//Controller Input
|
||||||
CurrentButton |= Config.JoyConController.GetButtons();
|
CurrentButton |= Config.JoyConController.GetButtons();
|
||||||
|
|
||||||
//Keyboard has priority stick-wise
|
//Keyboard has priority stick-wise
|
||||||
if (LeftJoystickDX == 0 && LeftJoystickDY == 0)
|
if (LeftJoystickDX == 0 && LeftJoystickDY == 0)
|
||||||
{
|
{
|
||||||
|
@ -163,7 +162,7 @@ namespace Ryujinx
|
||||||
{
|
{
|
||||||
(RightJoystickDX, RightJoystickDY) = Config.JoyConController.GetRightStick();
|
(RightJoystickDX, RightJoystickDY) = Config.JoyConController.GetRightStick();
|
||||||
}
|
}
|
||||||
|
|
||||||
LeftJoystick = new HidJoystickPosition
|
LeftJoystick = new HidJoystickPosition
|
||||||
{
|
{
|
||||||
DX = LeftJoystickDX,
|
DX = LeftJoystickDX,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue