aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormaficccc@gmail.com <maficccc@gmail.com>2018-03-04 19:31:36 +0100
committerMartinfx <maficccc@gmail.com>2018-04-02 13:30:19 +0200
commite659336c11abbcb6bec2c2dd094431ab287e94e6 (patch)
tree330e729146971e79ea12a88d257577941744feb1 /src
parent8cb324b2da063fb4dac29b4d2a5495fdbe78351a (diff)
downloadraylib-e659336c11abbcb6bec2c2dd094431ab287e94e6.tar.gz
raylib-e659336c11abbcb6bec2c2dd094431ab287e94e6.zip
Fix value stored to 'num_channels' is never read
Diffstat (limited to 'src')
-rw-r--r--src/external/jar_xm.h18
1 files changed, 2 insertions, 16 deletions
diff --git a/src/external/jar_xm.h b/src/external/jar_xm.h
index f7750664..9d4f5b5b 100644
--- a/src/external/jar_xm.h
+++ b/src/external/jar_xm.h
@@ -855,8 +855,6 @@ size_t jar_xm_get_memory_needed_for_context(const char* moddata, size_t moddata_
uint16_t num_instruments;
/* Read the module header */
-
- num_channels = READ_U16(offset + 8);
num_channels = READ_U16(offset + 8);
num_patterns = READ_U16(offset + 10);
@@ -2561,28 +2559,22 @@ uint64_t jar_xm_get_remaining_samples(jar_xm_context_t* ctx)
uint64_t total = 0;
uint8_t currentLoopCount = jar_xm_get_loop_count(ctx);
jar_xm_set_max_loop_count(ctx, 0);
-
+
while(jar_xm_get_loop_count(ctx) == currentLoopCount)
{
total += ctx->remaining_samples_in_tick;
ctx->remaining_samples_in_tick = 0;
jar_xm_tick(ctx);
}
-
+
ctx->loop_count = currentLoopCount;
return total;
}
-
-
-
-
//--------------------------------------------
//FILE LOADER - TODO - NEEDS TO BE CLEANED UP
//--------------------------------------------
-
-
#undef DEBUG
#define DEBUG(...) do { \
fprintf(stderr, __VA_ARGS__); \
@@ -2668,13 +2660,7 @@ int jar_xm_create_context_from_file(jar_xm_context_t** ctx, uint32_t rate, const
return 0;
}
-
-
-
#endif//end of JAR_XM_IMPLEMENTATION
//-------------------------------------------------------------------------------
-
-
-
#endif//end of INCLUDE_JAR_XM_H