コード例 #1
0
ファイル: st_all.c プロジェクト: MasaMune692/alcexamples
static int stop_enter(void)
{
    if (paused)
        paused = 0;
    else
        hole_stop();

    hud_init();

    return 0;
}
コード例 #2
0
ファイル: st_all.c プロジェクト: Aeggy/neverball
static int stop_enter(struct state *st, struct state *prev)
{
    if (paused)
        paused = 0;
    else
        hole_stop();

    hud_init();

    return 0;
}