aboutsummaryrefslogtreecommitdiff
path: root/texture.c
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2015-11-10 22:56:07 +0000
committerHarry Jeffery <harry@exec64.co.uk>2015-11-10 22:56:07 +0000
commit09c807871055a857fd1be936fa3219d4838c1151 (patch)
tree4413fa80f257d025e5591ce26c388d70e4155023 /texture.c
parentd414db0f65ada1d2bb159029d2f02f40a8d563e2 (diff)
downloadimv-09c807871055a857fd1be936fa3219d4838c1151.tar.gz
Use C style comments
Diffstat (limited to 'texture.c')
-rw-r--r--texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/texture.c b/texture.c
index 8c417b8..5cedcc3 100644
--- a/texture.c
+++ b/texture.c
@@ -52,7 +52,7 @@ int imv_texture_set_image(struct imv_texture *tex, FIBITMAP *image)
char* pixels = (char*)FreeImage_GetBits(frame);
- //figure out how many chunks are needed, and create them
+ /* figure out how many chunks are needed, and create them */
if(tex->num_chunks > 0) {
for(int i = 0; i < tex->num_chunks; ++i) {
SDL_DestroyTexture(tex->chunks[i]);