Decouple <cstdint>

This commit is contained in:
Martin Natano
2023-04-20 12:34:12 +02:00
parent bcea05dd67
commit aa87f85eef
167 changed files with 1533 additions and 1307 deletions
+3 -2
View File
@@ -21,6 +21,7 @@
#include <cmath>
#include <cstddef>
#include <cstdint>
static Preference<bool> g_bPalettedImageCache( "PalettedImageCache", false );
@@ -188,8 +189,8 @@ void ImageCache::ReadFromDisk()
struct ImageTexture: public RageTexture
{
uintptr_t m_uTexHandle;
uintptr_t GetTexHandle() const { return m_uTexHandle; }; // accessed by RageDisplay
std::uintptr_t m_uTexHandle;
std::uintptr_t GetTexHandle() const { return m_uTexHandle; }; // accessed by RageDisplay
/* This is a reference to a pointer in g_ImagePathToImage. */
RageSurface *&m_pImage;
int m_iWidth, m_iHeight;