Skip to content

Commit

Permalink
disable EXT_packed_pixels on big endian systems
Browse files Browse the repository at this point in the history
as a workaround for #114
  • Loading branch information
sezero committed Nov 14, 2024
1 parent 8e0159e commit 958fb63
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Quake/gl_vidsdl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1276,6 +1276,8 @@ static void GL_CheckExtensions (void)
//
if (COM_CheckParm("-nopackedpixels"))
Con_Warning ("EXT_packed_pixels disabled at command line\n");
else if (host_bigendian) /** FIXME: See https://github.com/sezero/quakespasm/issues/114 **/
Con_Warning ("EXT_packed_pixels disabled on big endian systems");
else if (gl_glsl_alias_able)
{
gl_packed_pixels = true;
Expand Down

0 comments on commit 958fb63

Please sign in to comment.