From 64694d4da33cb76086b00385a880c1c27f48efc4 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 31 Jul 2016 23:51:53 -0400 Subject: [PATCH] catchup --- gamehelpers.d | 2 +- stb_truetype.d | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) 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 //