From fb0c1b1ac7b4e7c6f22674c866b1b4b463dfa03d Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 28 Jun 2018 20:42:27 -0600 Subject: [PATCH] fs.mitm: Fix debug-commented-out command --- stratosphere/fs_mitm/source/fsmitm_service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/fs_mitm/source/fsmitm_service.cpp b/stratosphere/fs_mitm/source/fsmitm_service.cpp index f3b768626..f23794039 100644 --- a/stratosphere/fs_mitm/source/fsmitm_service.cpp +++ b/stratosphere/fs_mitm/source/fsmitm_service.cpp @@ -18,7 +18,7 @@ Result FsMitMService::dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_i rc = WrapIpcCommandImpl<&FsMitMService::open_data_storage_by_current_process>(this, r, out_c, pointer_buffer, pointer_buffer_size); break; case FspSrvCmd::OpenDataStorageByDataId: - //rc = WrapIpcCommandImpl<&FsMitMService::open_data_storage_by_data_id>(this, r, out_c, pointer_buffer, pointer_buffer_size); + rc = WrapIpcCommandImpl<&FsMitMService::open_data_storage_by_data_id>(this, r, out_c, pointer_buffer, pointer_buffer_size); break; default: break;