MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / __AXGetCurrentProfile

Function __AXGetCurrentProfile

src/dolphin/src/ax/AXProf.c:12–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10static u32 __AXProfileInitialized;
11
12AXPROFILE* __AXGetCurrentProfile(void)
13{
14 AXPROFILE* profile;
15
16 if (__AXProfileInitialized != 0U)
17 {
18 profile = &__AXProfile[__AXCurrentProfile];
19 __AXCurrentProfile += 1;
20 __AXCurrentProfile %= __AXMaxProfiles;
21 return profile;
22 }
23 return 0;
24}

Callers 1

__AXOutNewFrameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected