Skip to content

Commit

Permalink
tr_image: add code name for compressed RGB when listing images
Browse files Browse the repository at this point in the history
  • Loading branch information
illwieckz committed Oct 14, 2020
1 parent e8847b8 commit c9a0b03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine/renderer/tr_image.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ void R_ImageList_f()
break;

case GL_COMPRESSED_RGBA:
Com_sprintf( buffer, sizeof( buffer ), " " );
Com_sprintf( buffer, sizeof( buffer ), "RGBAC " );
out += buffer;
imageDataSize *= 4; // FIXME
// TODO: find imageDataSize
break;

case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
Expand Down

0 comments on commit c9a0b03

Please sign in to comment.