mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
gl: Silence compiler warning spam
This commit is contained in:
parent
6756bf7d4b
commit
780c38a5e5
1 changed files with 1 additions and 1 deletions
|
@ -74,6 +74,6 @@ namespace gl
|
||||||
// Very useful util when capturing traces with RenderDoc
|
// Very useful util when capturing traces with RenderDoc
|
||||||
static inline void push_debug_label(const char* label)
|
static inline void push_debug_label(const char* label)
|
||||||
{
|
{
|
||||||
glInsertEventMarkerEXT(strlen(label), label);
|
glInsertEventMarkerEXT(static_cast<GLsizei>(strlen(label)), label);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue