Remove std prefix from uint types

std::uint*  ->  uint*
This commit is contained in:
sukibaby
2024-10-05 17:51:14 -07:00
committed by teejusb
parent 57afab25c1
commit 659cd549a2
112 changed files with 589 additions and 589 deletions
+2 -2
View File
@@ -189,8 +189,8 @@ void ImageCache::ReadFromDisk()
struct ImageTexture: public RageTexture
{
std::uintptr_t m_uTexHandle;
std::uintptr_t GetTexHandle() const { return m_uTexHandle; }; // accessed by RageDisplay
uintptr_t m_uTexHandle;
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;