aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Memory/PageTable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Memory/PageTable.cs')
-rw-r--r--Ryujinx.Memory/PageTable.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Memory/PageTable.cs b/Ryujinx.Memory/PageTable.cs
index 71db1e76..8fdedd4f 100644
--- a/Ryujinx.Memory/PageTable.cs
+++ b/Ryujinx.Memory/PageTable.cs
@@ -1,6 +1,6 @@
namespace Ryujinx.Memory
{
- class PageTable<T> where T : unmanaged
+ public class PageTable<T> where T : unmanaged
{
public const int PageBits = 12;
public const int PageSize = 1 << PageBits;