mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-23 04:11:53 +00:00
Fix that please.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3636 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
beace4a5f7
commit
321dc86b43
1 changed files with 5 additions and 2 deletions
|
@ -784,8 +784,11 @@ int Image_WritePNG (char *filename, int compression, qbyte *pixels, int width, i
|
|||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma comment(lib, MSVCLIBSPATH "jpeg.lib")
|
||||
#pragma comment(lib, MSVCLIBSPATH "libjpeg64.lib")
|
||||
#ifdef _WIN64
|
||||
#pragma comment(lib, MSVCLIBSPATH "libjpeg64.lib")
|
||||
#else
|
||||
#pragma comment(lib, MSVCLIBSPATH "jpeg.lib")
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef JPEG_FALSE
|
||||
|
|
Loading…
Reference in a new issue