From 8021b07eb82b9941c1820b211bbe6d898589e59b Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 5 Apr 2019 13:33:06 -0700 Subject: [PATCH] results: add FsInvalidSaveDataSpaceId --- include/stratosphere/results/fs_results.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/stratosphere/results/fs_results.hpp b/include/stratosphere/results/fs_results.hpp index 6b6d6721..dc69ee40 100644 --- a/include/stratosphere/results/fs_results.hpp +++ b/include/stratosphere/results/fs_results.hpp @@ -44,9 +44,11 @@ static constexpr Result ResultFsInvalidPathFormat = MAKERESULT(Module_Fs, 60 static constexpr Result ResultFsDirectoryUnobtainable = MAKERESULT(Module_Fs, 6006); static constexpr Result ResultFsNotNormalized = MAKERESULT(Module_Fs, 6007); -static constexpr Result ResultFsInvalidOffset = MAKERESULT(Module_Fs, 6061); -static constexpr Result ResultFsInvalidSize = MAKERESULT(Module_Fs, 6062); -static constexpr Result ResultFsNullptrArgument = MAKERESULT(Module_Fs, 6063); +static constexpr Result ResultFsInvalidOffset = MAKERESULT(Module_Fs, 6061); +static constexpr Result ResultFsInvalidSize = MAKERESULT(Module_Fs, 6062); +static constexpr Result ResultFsNullptrArgument = MAKERESULT(Module_Fs, 6063); + +static constexpr Result ResultFsInvalidSaveDataSpaceId = MAKERESULT(Module_Fs, 6082); static constexpr Result ResultFsUnsupportedOperation = MAKERESULT(Module_Fs, 6300);