Skip to content

Commit

Permalink
make not static
Browse files Browse the repository at this point in the history
  • Loading branch information
bates64 authored Feb 27, 2024
1 parent b067027 commit c76b58c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/battle/1A5830.c
Original file line number Diff line number Diff line change
Expand Up @@ -2699,16 +2699,16 @@ API_CALLABLE(RemoveActor) {
return ApiStatus_DONE2;
}

API_CALLABLE(DropStarPoints) {
/// Star Point multiplier, indexed by actor count.
/// +10% multiplier for four actors
/// +30% multiplier for three or more actors
static s32 multiplier[] = {
100, 100, 100,
110,
130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130,
};
/// Star Point multiplier, indexed by actor count.
/// +10% multiplier for four actors
/// +30% multiplier for three or more actors
s32 StarPointMultiplier[] = {
100, 100, 100,
110,
130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130,
};

API_CALLABLE(DropStarPoints) {
BattleStatus* battleStatus = &gBattleStatus;
PlayerData* playerData = &gPlayerData;
Bytecode* args = script->ptrReadPos;
Expand Down

0 comments on commit c76b58c

Please sign in to comment.