Update window_handling.cpp

Fixed window handling endline
This commit is contained in:
Gibson 2021-12-26 21:30:56 -05:00 committed by GitHub
parent 63bacc0a77
commit 621745feca

View File

@ -14,7 +14,7 @@ namespace big
if (g_local_player == nullptr || g_local_player->m_vehicle == nullptr || g_local_player->m_ped_task_flag & (int)ePedTask::TASK_FOOT)
{
ImGui::Text("Please enter a vehicle.");
ImGui::End();
return;
}
g_vehicle_service->attempt_save();
@ -29,4 +29,4 @@ namespace big
ImGui::End();
}
}
}
}