mirror of
https://github.com/open-goal/jak-project
synced 2026-05-24 15:21:12 -04:00
13 lines
236 B
C++
13 lines
236 B
C++
|
|
// hides warnings
|
|
#ifdef __linux__
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wcast-qual"
|
|
#endif
|
|
|
|
#define STB_IMAGE_IMPLEMENTATION
|
|
#include "third-party/stb_image.h"
|
|
|
|
#ifdef __linux__
|
|
#pragma GCC diagnostic pop
|
|
#endif |