summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_resource_limit.h
diff options
context:
space:
mode:
authorChloe Marcec <dmarcecguzman@gmail.com>2021-02-03 02:55:16 +0100
committerChloe Marcec <dmarcecguzman@gmail.com>2021-02-03 02:55:16 +0100
commit2c6e94049362f592bfb578a2b078f6f3067ed0d8 (patch)
tree513aa888bfe87637e8736165b35b852de079b02f /src/core/hle/kernel/k_resource_limit.h
parentCompile error (diff)
downloadyuzu-2c6e94049362f592bfb578a2b078f6f3067ed0d8.tar
yuzu-2c6e94049362f592bfb578a2b078f6f3067ed0d8.tar.gz
yuzu-2c6e94049362f592bfb578a2b078f6f3067ed0d8.tar.bz2
yuzu-2c6e94049362f592bfb578a2b078f6f3067ed0d8.tar.lz
yuzu-2c6e94049362f592bfb578a2b078f6f3067ed0d8.tar.xz
yuzu-2c6e94049362f592bfb578a2b078f6f3067ed0d8.tar.zst
yuzu-2c6e94049362f592bfb578a2b078f6f3067ed0d8.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_resource_limit.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/kernel/k_resource_limit.h b/src/core/hle/kernel/k_resource_limit.h
index 6b3437ea6..58ae456f1 100644
--- a/src/core/hle/kernel/k_resource_limit.h
+++ b/src/core/hle/kernel/k_resource_limit.h
@@ -22,11 +22,11 @@ class System;
namespace Kernel {
class KernelCore;
enum class LimitableResource : u32 {
- PhysicalMemoryMax = 0,
- ThreadCountMax = 1,
- EventCountMax = 2,
- TransferMemoryCountMax = 3,
- SessionCountMax = 4,
+ PhysicalMemory = 0,
+ Threads = 1,
+ Events = 2,
+ TransferMemory = 3,
+ Sessions = 4,
Count,
};