Decouple <cstdint>
This commit is contained in:
+3
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user