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
+1 -1
View File
@@ -86,7 +86,7 @@ void WheelNotifyIcon::Update( float fDeltaTime )
/* We should probably end up parsing the vector and then dynamically
* insert flag icons based on "priority". Easy to do, hopefully
- Midiman */
static std::uint_fast32_t updateCounter = 0;
static uint_fast32_t updateCounter = 0;
updateCounter++;
const int index = updateCounter % m_vIconsToShow.size();
Sprite::SetState(m_vIconsToShow[index]);