Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MarathonRecomp/kernel/heap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "heap.h"
#include "memory.h"
#include "function.h"
#include "xdm.h"

constexpr size_t RESERVED_BEGIN = 0x7FEA0000;
constexpr size_t RESERVED_END = 0xA0000000;
Expand Down
4 changes: 2 additions & 2 deletions MarathonRecomp/kernel/imports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -575,9 +575,9 @@ uint32_t RtlNtStatusToDosError(uint32_t Status)

switch (Status)
{
case STATUS_NOT_IMPLEMENTED:
case uint32_t(STATUS_NOT_IMPLEMENTED):
return ERROR_CALL_NOT_IMPLEMENTED;
case STATUS_SEMAPHORE_LIMIT_EXCEEDED:
case uint32_t(STATUS_SEMAPHORE_LIMIT_EXCEEDED):
return ERROR_TOO_MANY_POSTS;
default:
LOGF_WARNING("Unimplemented NtStatus translation: {:#08x}", Status);
Expand Down
Loading