diff --git a/gamehelpers.d b/gamehelpers.d index 49cb253..7dfb063 100644 --- a/gamehelpers.d +++ b/gamehelpers.d @@ -286,7 +286,7 @@ final class OpenGlTexture { free(cast(void*) data); } - /// Generates from text. Requires stb_truetype.d + /// Generates from text. Requires ttf.d /// pass a pointer to the TtfFont as the first arg (it is template cuz of lazy importing, not because it actually works with different types) this(T, FONT)(FONT* font, int size, in T[] text) if(is(T == char)) { assert(font !is null); diff --git a/stb_truetype.d b/stb_truetype.d index 62c1228..2638ecc 100644 --- a/stb_truetype.d +++ b/stb_truetype.d @@ -1,3 +1,8 @@ +/************************ + This module is no longer maintained, use arsd.ttf instead. +*************************/ + + /// stb_truetype.h - v0.6c - public domain /// authored from 2009-2012 by Sean Barrett / RAD Game Tools //