diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e1da6b0..d3f42f7e 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -163,7 +163,7 @@ IF (ANT_TWEAK_BAR_FOUND) ENDIF (ANT_TWEAK_BAR_FOUND) # Copy font and shaders into build directory for in-place testing -FILE(GLOB Fonts "fonts/*.ttf") +FILE(GLOB fonts "fonts/*.ttf") file(COPY ${Fonts} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/Fonts) FILE(GLOB Shaders "shaders/*.vert" "shaders/*.frag") file(COPY ${Shaders} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/shaders) diff --git a/README b/README index 59b008a8..62d12137 100644 --- a/README +++ b/README @@ -59,3 +59,4 @@ Contributors: * bsoddd (Bug report & fix) * Jim Teeuwen (Bug report & fix) * quarnster (Bug report & fix) +* Per Inge Mathisen (Bug report @ fix) diff --git a/demo-distance-field-3.c b/demo-distance-field-3.c index f7d44f8c..877ffd8e 100644 --- a/demo-distance-field-3.c +++ b/demo-distance-field-3.c @@ -442,7 +442,7 @@ main( int argc, char **argv ) // Generate the glyp at 512 points, compute distance field and scale it // back to 32 points - // Just load another glyp if you want to see difference (draw render a '@') + // Just load another glyph if you want to see difference (draw render a '@') glyph = load_glyph( "fonts/Vera.ttf", L'@', 512, 32, 0.05); vector_push_back( font->glyphs, &glyph );