summaryrefslogtreecommitdiffhomepage
path: root/src/external/jar_mod.h
diff options
context:
space:
mode:
authorvictorfisac <[email protected]>2016-06-11 18:29:01 +0200
committervictorfisac <[email protected]>2016-06-11 18:29:01 +0200
commit1a60f376a4ebe4d0053a6ea308ee2b399d8c345d (patch)
tree2168bb09d221f2478e3371b296106700c130a0e4 /src/external/jar_mod.h
parent77f599885dade4930fb01baca22db6e2ae0c9f20 (diff)
parent27ba7de1e4a9d262b2f3039433977d6cffa1da8d (diff)
downloadraylib-1a60f376a4ebe4d0053a6ea308ee2b399d8c345d.tar.gz
raylib-1a60f376a4ebe4d0053a6ea308ee2b399d8c345d.zip
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'src/external/jar_mod.h')
-rw-r--r--src/external/jar_mod.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/external/jar_mod.h b/src/external/jar_mod.h
index e0169d5e..c39db65a 100644
--- a/src/external/jar_mod.h
+++ b/src/external/jar_mod.h
@@ -64,7 +64,7 @@
// - "Load" a MOD from file, context must already be initialized.
// Return size of file in bytes.
// -------------------------------------------
-// void jar_mod_fillbuffer( jar_mod_context_t * modctx, unsigned short * outbuffer, unsigned long nbsample, jar_mod_tracker_buffer_state * trkbuf )
+// void jar_mod_fillbuffer( jar_mod_context_t * modctx, short * outbuffer, unsigned long nbsample, jar_mod_tracker_buffer_state * trkbuf )
//
// - Generate and return the next samples chunk to outbuffer.
// nbsample specify the number of stereo 16bits samples you want.
@@ -1557,7 +1557,7 @@ mulong jar_mod_current_samples(jar_mod_context_t * modctx)
// Works, however it is very slow, this data should be cached to ensure it is run only once per file
mulong jar_mod_max_samples(jar_mod_context_t * ctx)
{
- muint buff[2];
+ mint buff[2];
mulong len;
mulong lastcount = ctx->loopcount;