Skip to content

Instantly share code, notes, and snippets.

@Shell64
Created March 1, 2016 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shell64/5082308a86a005ee603a to your computer and use it in GitHub Desktop.
Save Shell64/5082308a86a005ee603a to your computer and use it in GitHub Desktop.
//Image.cpp:136
throw love::Exception("Image cannot have mipmaps: compressed image data does not have all required mipmap levels.");
//Should be upgraded to:
throw love::Exception("Image cannot have mipmaps: compressed image data does not have all required mipmap levels (expected %d, got %d)", getMipmapCount(width, height), compresseddata[0]->getMipmapCount());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment