diff options
author | 2014-03-12 13:12:44 -0700 | |
---|---|---|
committer | 2014-03-12 13:12:44 -0700 | |
commit | 92dc3fc52cf097bd105460cf377779bdcf146d62 (patch) | |
tree | aa1c6a8230541a45e941eb4c459b19b8487e08d3 /opengl/libagl/vertex.cpp | |
parent | 06ed9491418ce84e4272bf4201545fa6cfe3932e (diff) |
native frameworks: 64-bit compile issues
- Fix format (print/scanf)
- Suppress unused argument warning messages (bonus)
Change-Id: I05c7724d2aba6da1e82a86000e11f3a8fef4e728
Diffstat (limited to 'opengl/libagl/vertex.cpp')
-rw-r--r-- | opengl/libagl/vertex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libagl/vertex.cpp b/opengl/libagl/vertex.cpp index dad04d6cb5..9aacdb3c89 100644 --- a/opengl/libagl/vertex.cpp +++ b/opengl/libagl/vertex.cpp @@ -41,7 +41,7 @@ void ogles_init_vertex(ogles_context_t* c) c->currentNormal.z = 0x10000; } -void ogles_uninit_vertex(ogles_context_t* c) +void ogles_uninit_vertex(ogles_context_t* /*c*/) { } |