소스 검색

vm_manager: Correct ordering of last two struct members of MemoryInfo

These should be swapped.
Lioncash 7 년 전
부모
커밋
b1b855c5d9
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/core/hle/kernel/vm_manager.h

+ 2 - 2
src/core/hle/kernel/vm_manager.h

@@ -159,8 +159,8 @@ struct MemoryInfo {
     u32 state;
     u32 attributes;
     u32 permission;
-    u32 device_refcount;
-    u32 ipc_refcount;
+    u32 ipc_ref_count;
+    u32 device_ref_count;
 };
 static_assert(sizeof(MemoryInfo) == 0x28, "MemoryInfo has incorrect size.");