compile fix

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1687 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-12-26 12:39:53 +00:00
parent d585d26393
commit bd9ebbf8c9
2 changed files with 2 additions and 4 deletions

View File

@ -17,7 +17,6 @@ files = [
'rasterfont.cpp',
'Render.cpp',
'TextureMngr.cpp',
'ImageWrite.cpp',
'NativeVertexFormat.cpp',
'VertexManager.cpp',
'VertexLoader.cpp',
@ -26,7 +25,6 @@ files = [
'VertexLoader_Position.cpp',
'VertexLoader_TextCoord.cpp',
'VertexLoaderManager.cpp',
'PixelShaderManager.cpp',
'VertexShaderManager.cpp',
'PixelShaderCache.cpp',
'VertexShaderCache.cpp',

View File

@ -19,7 +19,7 @@
#define _TEXTURECONVERTER_H
#include "VideoCommon.h"
#include "GLutil.h"
#include "GLUtil.h"
// Converts textures between formats
// TODO: support multiple texture formats
@ -36,4 +36,4 @@ void DecodeToTexture(u8* srcAddr, int srcWidth, int srcHeight, GLuint destTextur
}
#endif
#endif