Omit & for function pointers in e3setup/main.c

This commit is contained in:
kabiskac 2024-04-30 22:32:50 +02:00
parent 512abb2d12
commit 4ca36ea9a6
5 changed files with 8935 additions and 2 deletions

4
.clang-format Normal file
View file

@ -0,0 +1,4 @@
BasedOnStyle: WebKit
IndentWidth: 4
ColumnLimit: 120
PointerAlignment: Right

6525
ctx_asd.c Normal file

File diff suppressed because it is too large Load diff

2402
ctx_working.c Normal file

File diff suppressed because it is too large Load diff

View file

@ -405,7 +405,7 @@ static void CreateMGSelect(omObjData *object)
var_r26++; var_r26++;
} }
object->work[3] = 1; object->work[3] = 1;
object->func = &UpdateMGSelect; object->func = UpdateMGSelect;
} }
static void UpdateMGPic(omObjData *object) static void UpdateMGPic(omObjData *object)
@ -456,7 +456,7 @@ static void CreateMGPic(omObjData *object)
index2++; index2++;
object->work[1] = object->work[0]; object->work[1] = object->work[0];
HuSprAttrReset(temp_r3, object->work[1], 4); HuSprAttrReset(temp_r3, object->work[1], 4);
object->func = &UpdateMGPic; object->func = UpdateMGPic;
} }
static void UpdateMGInterface(omObjData *object) { void *sp8 = object->data; } static void UpdateMGInterface(omObjData *object) { void *sp8 = object->data; }

View file

@ -0,0 +1,2 @@
build_system = "ninja"
compiler_type = "mwcc"