Skip to content

Commit

Permalink
stb_image: Avoid stdint.h on 32-bit Symbian.
Browse files Browse the repository at this point in the history
As suggested by "mupfdev" on Github. We don't have a way to test
here but seems simple enough.

Fixes issue nothings#1321.
  • Loading branch information
rygorous committed Jan 22, 2023
1 parent b15b043 commit 038b6ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stb_image.h
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const ch
#endif
#endif

#ifdef _MSC_VER
#if defined(_MSC_VER) || defined(__SYMBIAN32__)
typedef unsigned short stbi__uint16;
typedef signed short stbi__int16;
typedef unsigned int stbi__uint32;
Expand Down

0 comments on commit 038b6ab

Please sign in to comment.