2021-07-17 14:27:11 +00:00
|
|
|
#include "th04/score.h"
|
|
|
|
|
2022-03-10 10:59:13 +00:00
|
|
|
extern score_lebcd_t score;
|
|
|
|
extern score_lebcd_t hiscore;
|
|
|
|
|
2021-07-22 18:48:47 +00:00
|
|
|
static const unsigned int STAGE_GRAZE_CAP = 999;
|
|
|
|
|
2021-07-03 13:56:37 +00:00
|
|
|
extern unsigned int graze_score; // Set per difficulty.
|
|
|
|
extern unsigned int stage_graze; // Reset to 0 when moving to a new stage.
|
|
|
|
|
2021-07-17 14:27:11 +00:00
|
|
|
extern unsigned char extends_gained;
|
|
|
|
extern unsigned long score_delta;
|
|
|
|
|
|
|
|
void pascal near score_update_and_render(void);
|
|
|
|
|
|
|
|
// Adds the entire score delta at once to the current score.
|
|
|
|
void pascal score_delta_commit(void);
|