mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
Fix Resource Limit max commit size
This commit is contained in:
parent
5b42834f8e
commit
0b41ecaa18
2 changed files with 3 additions and 1 deletions
|
@ -224,6 +224,8 @@ public:
|
|||
return fcramApplicationSize;
|
||||
}
|
||||
|
||||
u32 getTotalAppFcramSize() { return fcramApplicationSize; }
|
||||
|
||||
enum class BatteryLevel {
|
||||
Empty = 0, AlmostEmpty, OneBar, TwoBars, ThreeBars, FourBars
|
||||
};
|
||||
|
|
|
@ -88,7 +88,7 @@ s32 Kernel::getCurrentResourceValue(const KernelObject* limit, u32 resourceName)
|
|||
|
||||
u32 Kernel::getMaxForResource(const KernelObject* limit, u32 resourceName) {
|
||||
switch (resourceName) {
|
||||
case ResourceType::Commit: return appResourceLimits.maxCommit;
|
||||
case ResourceType::Commit: return mem.getTotalAppFcramSize();
|
||||
case ResourceType::Thread: return appResourceLimits.maxThreads;
|
||||
default: Helpers::panic("Attempted to get the max of unknown kernel resource: %d\n", resourceName);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue