fix(Mobile): Typo in text for empty personal vehicle list

This commit is contained in:
Yimura 2022-05-10 20:55:13 +02:00
parent 5024ea4d9d
commit 54829582f5
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -40,7 +40,7 @@ namespace big
{ {
if (g_mobile_service->personal_vehicles().empty()) if (g_mobile_service->personal_vehicles().empty())
{ {
ImGui::Text("No personal vehicle found, are you online?"); ImGui::Text("No personal vehicles found, are you online?");
} }
else else
{ {
@ -62,7 +62,7 @@ namespace big
g_fiber_pool->queue_job([&personal_veh] { g_fiber_pool->queue_job([&personal_veh] {
personal_veh->summon(); personal_veh->summon();
}); });
} }
} }
} }