yuzu: Fix TAS from rebase

This commit is contained in:
german77
2021-11-21 22:37:50 -06:00
committed by Narr the Reg
parent 746c85b560
commit e64ee99f00
3 changed files with 11 additions and 9 deletions

View File

@ -320,7 +320,8 @@ GRenderWindow::~GRenderWindow() {
void GRenderWindow::OnFrameDisplayed() {
input_subsystem->GetTas()->UpdateThread();
const TasInput::TasState new_tas_state = std::get<0>(input_subsystem->GetTas()->GetStatus());
const InputCommon::TasInput::TasState new_tas_state =
std::get<0>(input_subsystem->GetTas()->GetStatus());
if (!first_frame) {
last_tas_state = new_tas_state;