mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 15:01:41 +00:00
Rename Skin_SetColormap_ to Skin_SetupSkin.
This commit is contained in:
parent
08990ebb5a
commit
3dbb5724db
5 changed files with 5 additions and 5 deletions
|
@ -57,7 +57,7 @@ typedef struct skin_s {
|
|||
} skin_t;
|
||||
|
||||
skin_t *Skin_SetColormap (skin_t *skin, int cmap);
|
||||
void Skin_SetColormap_ (skin_t *skin, int cmap);
|
||||
void Skin_SetupSkin (skin_t *skin, int cmap);
|
||||
void Skin_SetTranslation (int cmap, int top, int bottom);
|
||||
void Skin_ProcessTranslation (int cmap, const byte *translation);
|
||||
void Skin_InitTranslations (void);
|
||||
|
|
|
@ -60,7 +60,7 @@ Skin_ProcessTranslation (int cmap, const byte *translation)
|
|||
}
|
||||
|
||||
void
|
||||
Skin_SetColormap_ (skin_t *skin, int cmap)
|
||||
Skin_SetupSkin (skin_t *skin, int cmap)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@ Skin_ProcessTranslation (int cmap, const byte *translation)
|
|||
}
|
||||
|
||||
void
|
||||
Skin_SetColormap_ (skin_t *skin, int cmap)
|
||||
Skin_SetupSkin (skin_t *skin, int cmap)
|
||||
{
|
||||
if (cmap)
|
||||
skin->auxtex = cmap_tex[cmap - 1];
|
||||
|
|
|
@ -109,7 +109,7 @@ Skin_SetColormap (skin_t *skin, int cmap)
|
|||
}
|
||||
if (cmap)
|
||||
skin->colormap = translations[cmap - 1];
|
||||
Skin_SetColormap_ (skin, cmap);
|
||||
Skin_SetupSkin (skin, cmap);
|
||||
return skin;
|
||||
}
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ Skin_ProcessTranslation (int cmap, const byte *translation)
|
|||
}
|
||||
|
||||
void
|
||||
Skin_SetColormap_ (skin_t *skin, int cmap)
|
||||
Skin_SetupSkin (skin_t *skin, int cmap)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue