commit 8e1699c78dada798b93c41c871f18214ba6d3c84 parent 9b41797614b21ac6d08e9b256c562b96b811862b Author: Michael Savage <mikejsavage@gmail.com> Date: Thu Sep 8 09:28:06 -0700 Fix warning Diffstat:
btt.cc | | | 19 | ++++++++++--------- |
diff --git a/btt.cc b/btt.cc @@ -6,15 +6,16 @@ #include "btt.h" #include "heightmap.h" -// triangles should look like this: -// -// v1 -// / \ -// / \ -// / \ -// v0 /______________\ v2 -// hypotenuse -// +/* + * triangles should look like this: + * + * v1 + * / \ + * / \ + * / \ + * v0 /______________\ v2 + * hypotenuse + */ static void btt_link_diamond( MemoryArena * const arena, BTT * const node ) { node->left = memarena_push_type( arena, BTT );