Add missing algorithm include to some files

Fix missing std::clamp
This commit is contained in:
James R 2024-04-24 17:03:01 -07:00
parent d685c1eb47
commit 8ae80a58b9
2 changed files with 3 additions and 0 deletions

View file

@ -10,6 +10,7 @@
#include "twodee_renderer.hpp"
#include <algorithm>
#include <unordered_set>
#include <stb_rect_pack.h>

View file

@ -16,6 +16,8 @@
/// not the architecture of the frame buffer.
/// The frame buffer is a linear one, and we need only the base address.
#include <algorithm>
#include "doomdef.h"
#include "doomstat.h"
#include "r_local.h"