| 768 | } |
| 769 | |
| 770 | void Renderer::RenderNewInventory() |
| 771 | { |
| 772 | g_Gui.DrawCompass(LaraItem); |
| 773 | |
| 774 | g_Gui.DrawCurrentObjectList(LaraItem, RingTypes::Inventory); |
| 775 | |
| 776 | if (g_Gui.GetRing(RingTypes::Ammo).RingActive) |
| 777 | g_Gui.DrawCurrentObjectList(LaraItem, RingTypes::Ammo); |
| 778 | |
| 779 | g_Gui.DrawAmmoSelector(); |
| 780 | g_Gui.FadeAmmoSelector(); |
| 781 | |
| 782 | DrawAllStrings(); |
| 783 | } |
| 784 | |
| 785 | void Renderer::DrawDisplayPickup(const DisplayPickup& pickup) |
| 786 | { |
nothing calls this directly
no test coverage detected