summaryrefslogtreecommitdiffstats
path: root/src/osd/modules/render/bgfx/suppressorreader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/render/bgfx/suppressorreader.cpp')
-rw-r--r--src/osd/modules/render/bgfx/suppressorreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/render/bgfx/suppressorreader.cpp b/src/osd/modules/render/bgfx/suppressorreader.cpp
index 02ca38365b4..5cfc9b2b4ce 100644
--- a/src/osd/modules/render/bgfx/suppressorreader.cpp
+++ b/src/osd/modules/render/bgfx/suppressorreader.cpp
@@ -87,7 +87,7 @@ bool suppressor_reader::get_values(const Value& value, std::string prefix, std::
{
const char* name_str = name.c_str();
const Value& value_array = value[name_str];
- for (UINT32 i = 0; i < value_array.Size() && i < count; i++)
+ for (uint32_t i = 0; i < value_array.Size() && i < count; i++)
{
if (!READER_CHECK(value_array[i].IsInt(), (prefix + "value[" + std::to_string(i) + "] must be an integer\n").c_str())) return false;
values[i] = value_array[i].GetInt();