Skip to content
Snippets Groups Projects
Commit 25464c86 authored by Lactozilla's avatar Lactozilla :speech_balloon:
Browse files

Translate the French

parent d74f2a00
No related branches found
No related tags found
No related merge requests found
...@@ -723,8 +723,8 @@ void Flush(void) ...@@ -723,8 +723,8 @@ void Flush(void)
while (gr_cachehead) while (gr_cachehead)
{ {
// ceci n'est pas du tout necessaire vu que tu les a charger normalement et // this is not necessary at all, because you have loaded them normally,
// donc il sont dans ta liste ! // and so they already are in your list!
#if 0 #if 0
//Hurdler: 25/04/2000: now support colormap in hardware mode //Hurdler: 25/04/2000: now support colormap in hardware mode
FTextureInfo *tmp = gr_cachehead->nextskin; FTextureInfo *tmp = gr_cachehead->nextskin;
...@@ -1296,11 +1296,11 @@ EXPORT void HWRAPI(SetTexture) (FTextureInfo *pTexInfo) ...@@ -1296,11 +1296,11 @@ EXPORT void HWRAPI(SetTexture) (FTextureInfo *pTexInfo)
pTexInfo->nextmipmap = NULL; pTexInfo->nextmipmap = NULL;
if (gr_cachetail) if (gr_cachetail)
{ // insertion en fin de liste { // insertion at the tail
gr_cachetail->nextmipmap = pTexInfo; gr_cachetail->nextmipmap = pTexInfo;
gr_cachetail = pTexInfo; gr_cachetail = pTexInfo;
} }
else // initialisation de la liste else // initialization of the linked list
gr_cachetail = gr_cachehead = pTexInfo; gr_cachetail = gr_cachehead = pTexInfo;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment