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 84aeb95fe7
commit fccc21e4b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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) 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::Text("Please enter a vehicle.");
ImGui::End();
return; return;
} }
g_vehicle_service->attempt_save(); g_vehicle_service->attempt_save();
@ -29,4 +29,4 @@ namespace big
ImGui::End(); ImGui::End();
} }
} }
} }