+ added mentions of glew and glut requirements in the readme

+ added PKGV0013 to the list of supported packages

Signed-off-by: Alexis Maiquez <almamu@almamu.com>
This commit is contained in:
Alexis Maiquez 2021-09-09 20:59:49 +02:00
parent 58be46460b
commit 03089ec35d
2 changed files with 5 additions and 2 deletions

View File

@ -19,6 +19,8 @@ Wallpaper Engine is a software designed by [Kristjan Skutta](https://store.steam
- Xrandr
- GLFW3
- GLM
- GLEW
- GLUT
- FreeImage
# 5. How to use
@ -93,6 +95,6 @@ This was the first background to even be compatible with the software. And It's
![example](docs/images/example.gif)
# 6. Special thanks
# 7. Special thanks
- [RePKG](https://github.com/notscuffed/repkg) for the information on texture flags
- [RenderDoc](https://github.com/baldurk/renderdoc) for the so helpful OpenGL debugging tool that simplified finding issues on the new OpenGL code. Seriously this tool ROCKS

View File

@ -108,7 +108,8 @@ void CPackage::validateHeader (FILE* fp)
strcmp ("PKGV0009", pointer) != 0 &&
strcmp ("PKGV0004", pointer) != 0 &&
strcmp ("PKGV0005", pointer) != 0 &&
strcmp ("PKGV0006", pointer) != 0)
strcmp ("PKGV0006", pointer) != 0 &&
strcmp ("PKGV0013", pointer) != 0)
{
delete[] pointer;
throw std::runtime_error ("Unsupported package version");