void Quit(){ if(GameState==VERSUS){ GoToMenu(); }else{ if(pause) GamePause(); endgame = 1; } }
void BoxWorldState::Update(void) { if(gameController->GetInput() == "B" || gameController->GetInput() == "b") { Valid(); GoToMenu(); } else if(gameController->GetInput() == "H" || gameController->GetInput() == "h") { Valid(); GoToHighScore(); } else NotValid(); }
void MythDVDPlayer::SeekForScreenGrab(uint64_t &number, uint64_t frameNum, bool absolute) { if (!player_ctx->buffer->IsDVD()) return; if (GoToMenu("menu")) { if (player_ctx->buffer->DVD()->IsInMenu() && !player_ctx->buffer->DVD()->IsInStillFrame()) { GoToDVDProgram(1); } } else if (player_ctx->buffer->DVD()->GetTotalTimeOfTitle() < 60) { GoToDVDProgram(1); number = frameNum; if (number >= totalFrames) number = totalFrames / 2; } }