Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
672021b
Implement ClearMatertrialSetFromStorageSpace
madebr Jun 23, 2026
b4152d0
Match InitTreeSurgery
madebr Jun 23, 2026
ed808a6
Match DisposeStorageSpace
madebr Jun 23, 2026
0e6e6d3
Match LoadAllStuffInDirectory
madebr Jun 23, 2026
3c49c82
Match LoadSinglePixelmap
madebr Jun 23, 2026
37e3414
Implement LoadSingleMaterial
madebr Jun 23, 2026
9918677
Match TurnOnCloaking and IsCarCloaked
madebr Jun 23, 2026
fb3d9a6
Match RemoveFromCloakingList and RemoveFromCloakingList
madebr Jun 23, 2026
daf74ea
Match PeriodicCloaking
madebr Jun 23, 2026
6332744
Implement CreateBillBoard
madebr Jun 23, 2026
c13c6ee
Implement PrintPowerupIconIn3D
madebr Jun 23, 2026
9839962
Match InitialiseExtraRendersk & AddExtraRender
madebr Jun 23, 2026
ad6856c
Match PointOutOfSight
madebr Jun 23, 2026
863635f
Match UnsuffixedMaterial
madebr Jun 23, 2026
e4b0310
Match RoadUntexToPersp
madebr Jun 23, 2026
13225cc
Implement WallUntexToPersp
madebr Jun 23, 2026
4d8a5f7
Implement WallLinearToPersp
madebr Jun 23, 2026
16c03a8
Match GetRoadTexturingLevel
madebr Jun 23, 2026
37d75b5
Match DisposeSuffixedMaterials
madebr Jun 23, 2026
b3e1bd6
Match ProcessFaceMaterials
madebr Jun 23, 2026
c2f2aaf
Match FixificateClipulatingPlaneyThings & CancelificateClipulatingPla…
madebr Jun 23, 2026
2f465f6
Implement ProcessModelFaceMaterials2
madebr Jun 23, 2026
99442b9
Match ProcessMaterials
madebr Jun 23, 2026
767485f
Match BuildColourTable
madebr Jun 23, 2026
52b1c79
Match GetAccessoryRendering
madebr Jun 23, 2026
c3e85ed
Match SetAlwaysTyping
madebr Jun 23, 2026
768c645
Match ClearAlwaysTyping
madebr Jun 23, 2026
a427383
Match ChoiceDisabled
madebr Jun 23, 2026
c0f1b89
Match SelectThisItemIn
madebr Jun 23, 2026
03faa35
Match WhichItemIsSelectedIn
madebr Jun 23, 2026
0e9d76b
Match LoadInterfaceStuff
madebr Jun 23, 2026
e740de3
Match LoadFlic and InitFlicQueue
madebr Jun 23, 2026
d557155
Match EdgeTriggerModeOn and EdgeTriggerModeOff
madebr Jun 23, 2026
9213b3f
Match DoInterfaceScreen
madebr Jun 23, 2026
9d3f7c5
Fix MinGW warning
madebr Jun 23, 2026
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
7 changes: 6 additions & 1 deletion src/carma2/newcommon/10-loading2.c
Original file line number Diff line number Diff line change
Expand Up @@ -461,11 +461,16 @@ void C2_HOOK_FASTCALL LoadKeyMapping(void) {
PFfclose(f);
}

// LoadInterfaceStuff
// FUNCTION: CARMA2_HW 0x00487ea0
void C2_HOOK_FASTCALL LoadInterfaceStuff(int pWithin_race) {

// empty
}

// FUNCTION: CARMA2_HW 0x00487eb0
void C2_HOOK_FASTCALL InitInterfaceLoadState(void) {

// empty
}

// AdjustCarCoordinates
Expand Down
2 changes: 1 addition & 1 deletion src/carma2/newcommon/10-loading2.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ extern void C2_HOOK_FASTCALL FinishLoadingGeneral(void);

extern void C2_HOOK_FASTCALL LoadKeyMapping(void);

// LoadInterfaceStuff
extern void C2_HOOK_FASTCALL LoadInterfaceStuff(int pWithin_race);

extern void C2_HOOK_FASTCALL InitInterfaceLoadState(void);

Expand Down
5 changes: 4 additions & 1 deletion src/carma2/newcommon/16-graphics1.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@ void C2_HOOK_FASTCALL InitWobbleStuff(void) {

// StartRenderingHeadups

// RenderThisHeadup
// STUB: CARMA2_HW 0x004e5ad0
void C2_HOOK_FASTCALL RenderThisHeadup(br_actor* pActor) {
NOT_IMPLEMENTED();
}

// StopRenderingHeadups

Expand Down
2 changes: 1 addition & 1 deletion src/carma2/newcommon/16-graphics1.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ extern void C2_HOOK_FASTCALL InitWobbleStuff(void);

// StartRenderingHeadups

// RenderThisHeadup
extern void C2_HOOK_FASTCALL RenderThisHeadup(br_actor* pActor);

// StopRenderingHeadups

Expand Down
Loading