From 15381409dce80c4a50621dc705223ed2551e18dc Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 30 Apr 2021 09:02:58 -0700 Subject: [PATCH] fs: fix missed operation rename --- .../ams_mitm/source/fs_mitm/fsmitm_layered_romfs_storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_layered_romfs_storage.cpp b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_layered_romfs_storage.cpp index 956c6b622..c959e2f96 100644 --- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_layered_romfs_storage.cpp +++ b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_layered_romfs_storage.cpp @@ -195,7 +195,7 @@ namespace ams::mitm::fs { Result LayeredRomfsStorage::OperateRange(void *dst, size_t dst_size, OperationId op_id, s64 offset, s64 size, const void *src, size_t src_size) { switch (op_id) { - case OperationId::InvalidateCache: + case OperationId::Invalidate: case OperationId::QueryRange: if (size == 0) { if (op_id == OperationId::QueryRange) {