medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit c68419f5f2694a8a280221fff6f295eee8935245
parent 86ff23440f0136adbe749a98c65ff8b6b0a07d5d
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun Aug 30 21:21:57 +0200

Static

Diffstat:
hm.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hm.cc b/hm.cc @@ -84,7 +84,7 @@ glm::vec3 angles_to_vector_xy( const glm::vec3 & angles ) { return glm::vec3( sin( angles.y ), cos( angles.y ), 0 ); } -void print_vec3( const std::string & name, const glm::vec3 & v ) { +static void print_vec3( const std::string & name, const glm::vec3 & v ) { printf( "%s: %.3f %.3f %.3f\n", name.c_str(), v.x, v.y, v.z ); }