Changed: #825 Remove all warning when compiling Ryzom

This commit is contained in:
kervala 2010-08-01 10:45:50 +02:00
parent 22d206b1db
commit 5469274e14
2 changed files with 2 additions and 2 deletions

View file

@ -405,7 +405,7 @@ void CDriverGLStates::stencilFunc(GLenum func, GLint ref, GLuint mask)
#endif
{
// new state
_CurStencilFunc = stencilFunc;
_CurStencilFunc = func;
_CurStencilRef = ref;
_CurStencilMask = mask;

View file

@ -260,7 +260,7 @@ void CAsyncFileManager::CMultipleFileLoad::run (void)
//fseek (f, 0, SEEK_SET);
ptr = new uint8[filesize];
if (fread (ptr, filesize, 1, f) != 1)
nlwarning("AFM: Couldn't read '%s'", _FileName[i].c_str());
nlwarning("AFM: Couldn't read '%s'", _FileNames[i].c_str());
fclose (f);
*_Ptrs[i] = ptr;