2022-05-27 19:44:19 +00:00
|
|
|
// Needed outside to allow callers to set these to "custom" colors… i.e., the
|
|
|
|
// intended ones after they partied on the palette themselves. Would be cleaner
|
|
|
|
// if regist() just set the correct hardware palette itself… oh well, it also
|
|
|
|
// helps to document which colors you'd better not use in the background image.
|
|
|
|
#define COL_REGIST_SELECTED 3 // V_GREEN
|
|
|
|
#define COL_REGIST_REGULAR V_WHITE
|
|
|
|
|
2020-05-22 17:27:50 +00:00
|
|
|
// Shows the high score list for the current difficulty. If the given game
|
|
|
|
// result is good enough to be on there, the player is asked to enter a name,
|
|
|
|
// before the result is inserted and written to the high score file.
|
|
|
|
void regist(
|
2021-12-17 21:19:17 +00:00
|
|
|
int32_t score, int16_t stage, const char route[SCOREDAT_ROUTE_LEN + 1]
|
2020-05-22 17:27:50 +00:00
|
|
|
);
|