소스 검색

Corected some issues with jar_xm

Problems when compiling with VS2015
Probably DEBUG(...) macro is not the best naming...
pull/329/head
raysan5 7 년 전
부모
커밋
53fbeeea71
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/external/jar_xm.h

+ 2
- 2
src/external/jar_xm.h 파일 보기

@ -308,7 +308,7 @@ uint64_t jar_xm_get_remaining_samples(jar_xm_context_t* ctx);
#include <math.h>
#include <string.h>
#ifdef JAR_XM_DEBUG
#if JAR_XM_DEBUG //JAR_XM_DEBUG defined as 0
#include <stdio.h>
#define DEBUG(fmt, ...) do { \
fprintf(stderr, "%s(): " fmt "\n", __func__, __VA_ARGS__); \
@ -782,7 +782,7 @@ uint64_t jar_xm_get_latest_trigger_of_channel(jar_xm_context_t* ctx, uint16_t ch
#define READ_U32(offset) ((uint32_t)READ_U16(offset) | ((uint32_t)READ_U16((offset) + 2) << 16))
#define READ_MEMCPY(ptr, offset, length) memcpy_pad(ptr, length, moddata, moddata_length, offset)
static r">inline void memcpy_pad(void* dst, size_t dst_len, const void* src, size_t src_len, size_t offset) {
static void memcpy_pad(void* dst, size_t dst_len, const void* src, size_t src_len, size_t offset) {
uint8_t* dst_c = dst;
const uint8_t* src_c = src;

불러오는 중...
취소
저장