aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Utilities/IntUtils.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/Utilities/IntUtils.cs')
-rw-r--r--Ryujinx.HLE/Utilities/IntUtils.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Ryujinx.HLE/Utilities/IntUtils.cs b/Ryujinx.HLE/Utilities/IntUtils.cs
deleted file mode 100644
index a7178d80..00000000
--- a/Ryujinx.HLE/Utilities/IntUtils.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-namespace Ryujinx.HLE.Utilities
-{
- static class IntUtils
- {
- public static int AlignUp(int value, int size)
- {
- return (value + (size - 1)) & ~(size - 1);
- }
-
- public static long AlignUp(long value, int size)
- {
- return (value + (size - 1)) & ~((long)size - 1);
- }
-
- public static int AlignDown(int value, int size)
- {
- return value & ~(size - 1);
- }
-
- public static long AlignDown(long value, int size)
- {
- return value & ~((long)size - 1);
- }
- }
-}