From 6c3b1b6b5105c405dcdc43aafc8918ba5ca21fdf Mon Sep 17 00:00:00 2001 From: jduncanator Date: Mon, 14 Jan 2019 10:15:05 +1100 Subject: [PATCH] Use new ServiceNotImplementedException --- .../HOS/Services/Mii/IDatabaseService.cs | 41 ++++++++++--------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Mii/IDatabaseService.cs b/Ryujinx.HLE/HOS/Services/Mii/IDatabaseService.cs index ea7ca92372..cb2bf04ada 100644 --- a/Ryujinx.HLE/HOS/Services/Mii/IDatabaseService.cs +++ b/Ryujinx.HLE/HOS/Services/Mii/IDatabaseService.cs @@ -1,4 +1,5 @@ using Ryujinx.Common.Logging; +using Ryujinx.HLE.Exceptions; using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.Utilities; using System; @@ -125,19 +126,19 @@ namespace Ryujinx.HLE.HOS.Services.Mii // IsFullDatabase() -> bool private long IsFullDatabase(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } // GetCount(i32) -> i32 private long GetCount(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } // Get(i32) -> (i32, array) private long Get(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } // Get1(i32) -> (i32, array) @@ -155,12 +156,12 @@ namespace Ryujinx.HLE.HOS.Services.Mii private long UpdateLatest(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long BuildRandom(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } // BuildDefault(i32) -> nn::mii::CharInfo @@ -242,72 +243,72 @@ namespace Ryujinx.HLE.HOS.Services.Mii private long Get2(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long Get3(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long UpdateLatest1(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long FindIndex(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long Move(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long AddOrReplace(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long Delete(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long DestroyFile(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long DeleteFile(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long Format(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long Import(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long Export(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long IsBrokenDatabaseWithClearFlag(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } private long GetIndex(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } // SetInterfaceVersion(u32) @@ -322,7 +323,7 @@ namespace Ryujinx.HLE.HOS.Services.Mii private long Convert(ServiceCtx context) { - throw new NotImplementedException(); + throw new ServiceNotImplementedException(context); } } } \ No newline at end of file