Replace "unsigned int" with "uint32_t"

This commit is contained in:
GravisZro
2024-05-23 22:51:16 -04:00
parent 9c039e6d2c
commit 2147cfa68b
133 changed files with 1209 additions and 1209 deletions

View File

@@ -82,7 +82,7 @@ float rtp_startlog_time;
INT64 Runtime_performance_flags = RTI_FRAMETIME;
INT64 Runtime_performance_clockfreq = 0;
INT64 Runtime_performance_frame_counter = 0;
unsigned int Runtime_performance_counter = 0;
uint32_t Runtime_performance_counter = 0;
unsigned char Runtime_performance_enabled = 0;
tRTFrameInfo RTP_SingleFrame;
@@ -98,8 +98,8 @@ void rtp_WriteBufferLog(void) {
#ifdef USE_RTP
Runtime_performance_enabled = 1; // make sure it's enabled for the macros
// determine how many frames to write out
unsigned int Num_frames;
unsigned int counter;
uint32_t Num_frames;
uint32_t counter;
char buffer[4096];
Num_frames = std::min<unsigned>(Runtime_performance_counter, MAX_RTP_SAMPLES);