X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=gl_textures.c;h=78bd26a783d9c7dc56b570af7371d72162dad7d9;hb=847da7200d03481f243a41ffddb3c5366481a601;hp=2725277e38b033c7a38a12eb9aef93a9aafed024;hpb=b91033966317d4d6a2a6bdf2952291fc88e3f7c4;p=xonotic%2Fdarkplaces.git diff --git a/gl_textures.c b/gl_textures.c index 2725277e..78bd26a7 100644 --- a/gl_textures.c +++ b/gl_textures.c @@ -1458,7 +1458,7 @@ int R_TextureHeight(rtexture_t *rt) return ((gltexture_t *)rt)->height; } -void R_GetFragmentLocation(rtexture_t *rt, int *x, int *y, float *fx1, float *fy1, float *fx2, float *fy2) +void R_FragmentLocation(rtexture_t *rt, int *x, int *y, float *fx1, float *fy1, float *fx2, float *fy2) { gltexture_t *glt; float iwidth, iheight; @@ -1482,7 +1482,7 @@ void R_GetFragmentLocation(rtexture_t *rt, int *x, int *y, float *fx1, float *fy return; } if (!rt) - Host_Error("R_GetFragmentLocation: no texture supplied\n"); + Host_Error("R_FragmentLocation: no texture supplied\n"); glt = (gltexture_t *)rt; if (glt->flags & TEXF_FRAGMENT) {