- fix for missing include dir in MSVC 7 project files
- small warning fix for unreferenced variable.
This commit is contained in:
parent
dbef15f99e
commit
b1c47f4159
@ -74,7 +74,7 @@
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\..\..\..\lib\windows\freetype\include;..\..\..\..\build\msvc_7\extern\ftgl\include;..\..\..\..\lib\windows\gettext\include;..\..\..\source\blender\blenlib;..\..\..\source\blender\makesdna"
|
||||
AdditionalIncludeDirectories="..\..\..\..\lib\windows\freetype\include;..\..\..\..\build\msvc_7\extern\ftgl\include;..\..\..\..\lib\windows\gettext\include;..\..\..\source\blender\blenlib;..\..\..\source\blender\makesdna;..\..\..\source\blender\include"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_LIB,WCHAR_T16,HAVE_LC_MESSAGES,FTGL_LIBRARY_STATIC"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
|
@ -1226,7 +1226,7 @@ static void write_images(WriteData *wd, ListBase *idbase)
|
||||
{
|
||||
Image *ima;
|
||||
PackedFile * pf;
|
||||
PreviewImage *prv;
|
||||
|
||||
|
||||
ima= idbase->first;
|
||||
while(ima) {
|
||||
@ -1242,7 +1242,7 @@ static void write_images(WriteData *wd, ListBase *idbase)
|
||||
}
|
||||
|
||||
if (ima->preview) {
|
||||
prv = ima->preview;
|
||||
PreviewImage *prv = ima->preview;
|
||||
writestruct(wd, DATA, "PreviewImage", 1, prv);
|
||||
writedata(wd, DATA, prv->w*prv->h*sizeof(unsigned int), prv->rect);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user