mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-06 16:04:35 +00:00
Math Sizes (#297)
* Math Sizes Added sizes to most variable types * Removed sizes and fixed pads Removed sizes from base types and cleaned up pads * PR fixes
This commit is contained in:
parent
c3421dda0c
commit
449b2247fd
19 changed files with 43 additions and 43 deletions
|
@ -882,7 +882,7 @@ void Fault_LogStackTrace(OSThread* thread, s32 height) {
|
|||
u32 ra = thread->context.ra;
|
||||
u32 pc = thread->context.pc;
|
||||
u32 addr;
|
||||
u32 pad;
|
||||
s32 pad;
|
||||
|
||||
osSyncPrintf("STACK TRACE\nSP PC (VPC)\n");
|
||||
for (line = 1; line < height && (ra != 0 || sp != 0) && pc != (u32)__osCleanupThread; line++) {
|
||||
|
@ -955,7 +955,7 @@ void Fault_UpdatePad() {
|
|||
void Fault_ThreadEntry(void* arg) {
|
||||
OSMesg msg;
|
||||
OSThread* faultedThread;
|
||||
u32 pad;
|
||||
s32 pad;
|
||||
|
||||
osSetEventMesg(OS_EVENT_CPU_BREAK, &sFaultStructPtr->queue, 1);
|
||||
osSetEventMesg(OS_EVENT_FAULT, &sFaultStructPtr->queue, 2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue