Remove debug print

This commit is contained in:
excitedneon 2017-05-11 22:17:24 +03:00
parent 5f3c56cf42
commit 710ef8d6b4
1 changed files with 0 additions and 3 deletions

View File

@ -66,9 +66,6 @@ namespace Cyber.Util {
string Hash = CreateHash(text);
if (forceRender || !Cache.ContainsKey(Hash)) {
Cache[Hash] = Singleton.RenderText(text);
Term.Println("Created a new texture for:");
Term.Println(Hash);
Term.Println("====");
}
return Cache[Hash];
}