Include map header in hud_elements.h

Otherwise, I get the following compilation errors on OSX

```
2024-09-09T22:58:12.8720860Z In file included from ../src/vulkan.cpp:49:
2024-09-09T22:58:12.8751290Z In file included from ../src/overlay.h:12:
2024-09-09T22:58:12.8785670Z ../src/hud_elements.h:147:14: error: no template named 'map' in namespace 'std'; did you mean 'max'?
2024-09-09T22:58:12.8805510Z   147 |         std::map<VkPresentModeKHR, std::string> presentModeMap = {
2024-09-09T22:58:12.8821870Z       |         ~~~~~^~~
2024-09-09T22:58:12.8838900Z       |              max
```

full log to be attached soo
This commit is contained in:
Mark Harfouche 2024-09-09 19:03:36 -04:00 committed by flightlessmango
parent 8b7dae6c42
commit feef6e395b

View File

@ -2,6 +2,7 @@
#include <vector>
#include <string>
#include <utility>
#include <map>
#include <imgui.h>
#include "timing.hpp"
#include <functional>