Skip to content

Commit 9b80382

Browse files
committed
Fix an incorrect format string
1 parent fc81f0e commit 9b80382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libretro/drivers/video/opengl/moderngl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def _debug_source(source: int) -> str:
138138
case GL.GL_DEBUG_SOURCE_OTHER:
139139
return "OTHER"
140140
case _:
141-
return f"<unknown({type})>"
141+
return f"<unknown({source})>"
142142

143143

144144
def _debug_type(type: int) -> str:

0 commit comments

Comments
 (0)