fix param glGetFloatv in rlGetLineWidth in rlgl

This commit is contained in:
psxdev 2024-02-04 17:35:36 +01:00
parent 3cc3141ca4
commit b5dd6baa6d

View File

@ -1897,7 +1897,7 @@ float rlGetLineWidth(void)
{
float width = 0;
#if defined(PLATFORM_DREAMCAST) //fix needed on gldc by now hardcoded here to avoid compiling errors
glGetFloatv(0x0B21/*GL_LINE_WIDTH*/);
glGetFloatv(0x0B21/*GL_LINE_WIDTH*/, &width);
#else
glGetFloatv(GL_LINE_WIDTH, &width);
#endif