Merge pull request #4635 from Koekto-code/Koekto-code-patch-1

Fix mingw include in assimp_cmd.rc
pull/4632/head^2
Kim Kulling 2022-07-29 20:37:34 +02:00 committed by GitHub
commit 8abacebad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
#include "revision.h" #include "revision.h"
#include "winres.h" #if defined(__GNUC__) && defined(_WIN32)
#include "winresrc.h"
#else
#include "winres.h"
#endif
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252) #pragma code_page(1252)