We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b7a74 commit 73276f6Copy full SHA for 73276f6
2 files changed
MarathonRecomp/kernel/heap.cpp
@@ -2,6 +2,7 @@
2
#include "heap.h"
3
#include "memory.h"
4
#include "function.h"
5
+#include "xdm.h"
6
7
constexpr size_t RESERVED_BEGIN = 0x7FEA0000;
8
constexpr size_t RESERVED_END = 0xA0000000;
MarathonRecomp/kernel/imports.cpp
@@ -575,9 +575,9 @@ uint32_t RtlNtStatusToDosError(uint32_t Status)
575
576
switch (Status)
577
{
578
- case STATUS_NOT_IMPLEMENTED:
+ case uint32_t(STATUS_NOT_IMPLEMENTED):
579
return ERROR_CALL_NOT_IMPLEMENTED;
580
- case STATUS_SEMAPHORE_LIMIT_EXCEEDED:
+ case uint32_t(STATUS_SEMAPHORE_LIMIT_EXCEEDED):
581
return ERROR_TOO_MANY_POSTS;
582
default:
583
LOGF_WARNING("Unimplemented NtStatus translation: {:#08x}", Status);
0 commit comments