name audio.c, board/audio.c, board/basic_space, match files (#571)
* name audio.c and board/audio.c * fix audio, complete board/basic_space, battle * revert changes that broke build * completely finish New and NewMore.cp, for some reason NewMore fails checksum * finally match NewMore.cp
This commit is contained in:
parent
4ee46b3396
commit
eb11f9c23f
7 changed files with 42 additions and 22 deletions
|
|
@ -374,7 +374,7 @@ static void CoinChgSeparate(omObjData *object, coinChg *coin_chg) {
|
|||
}
|
||||
|
||||
static void CoinChgShow(omObjData* object, coinChg* coin_chg) {
|
||||
Vec sp8;
|
||||
Vec pos;
|
||||
f32 angle;
|
||||
f32 y_pos;
|
||||
|
||||
|
|
@ -385,14 +385,14 @@ static void CoinChgShow(omObjData* object, coinChg* coin_chg) {
|
|||
} else {
|
||||
y_pos = (50.0f * angle) + object->trans.y;
|
||||
}
|
||||
BoardModelPosGet(coin_chg->coin_model, &sp8);
|
||||
BoardModelPosSet(coin_chg->coin_model, sp8.x, y_pos, sp8.z);
|
||||
BoardModelPosGet(coin_chg->sign_model, &sp8);
|
||||
BoardModelPosSet(coin_chg->sign_model, sp8.x, y_pos, sp8.z);
|
||||
BoardModelPosGet(coin_chg->ones_model, &sp8);
|
||||
BoardModelPosSet(coin_chg->ones_model, sp8.x, y_pos, sp8.z);
|
||||
BoardModelPosGet(coin_chg->tens_model, &sp8);
|
||||
BoardModelPosSet(coin_chg->tens_model, sp8.x, y_pos, sp8.z);
|
||||
BoardModelPosGet(coin_chg->coin_model, &pos);
|
||||
BoardModelPosSet(coin_chg->coin_model, pos.x, y_pos, pos.z);
|
||||
BoardModelPosGet(coin_chg->sign_model, &pos);
|
||||
BoardModelPosSet(coin_chg->sign_model, pos.x, y_pos, pos.z);
|
||||
BoardModelPosGet(coin_chg->ones_model, &pos);
|
||||
BoardModelPosSet(coin_chg->ones_model, pos.x, y_pos, pos.z);
|
||||
BoardModelPosGet(coin_chg->tens_model, &pos);
|
||||
BoardModelPosSet(coin_chg->tens_model, pos.x, y_pos, pos.z);
|
||||
if (coin_chg->angle < 90) {
|
||||
coin_chg->angle += 6;
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue