소스 검색

Review DecompressData() types, for consistency

pull/969/head
raysan5 5 년 전
부모
커밋
08165fed18
2개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. +3
    -3
      src/core.c
  2. +2
    -2
      src/raylib.h

+ 3
- 3
src/core.c 파일 보기

@ -2056,15 +2056,15 @@ unsigned char *CompressData(unsigned char *data, int dataLength, int *compDataLe
}
// Decompress data (DEFLATE algorythm)
char *DecompressData(char *compData, int compDataLength, int *dataLength)
unsigned char *DecompressData(unsigned char *compData, int compDataLength, int *dataLength)
{
char *data = NULL;
#if defined(SUPPORT_COMPRESSION_API)
data = stbi_zlib_decode_malloc(compData, compDataLength, dataLength);
data = stbi_zlib_decode_malloc(p">(char *)compData, compDataLength, dataLength);
#endif
return data;
return p">(unsigned char *)data;
}
// Save integer value to storage file (to defined position)

+ 2
- 2
src/raylib.h 파일 보기

@ -956,8 +956,8 @@ RLAPI char **GetDroppedFiles(int *count); // Get dropped
RLAPI void ClearDroppedFiles(void); // Clear dropped files paths buffer (free memory)
RLAPI long GetFileModTime(const char *fileName); // Get file modification time (last write time)
RLAPI unsigned char *CompressData(unsigned char *data, int dataLength, int *compDataLength); // Compress data (DEFLATE algorythm)
RLAPI char *DecompressData(char *compData, int compDataLength, int *dataLength); // Decompress data (DEFLATE algorythm)
RLAPI unsigned char *CompressData(unsigned char *data, int dataLength, int *compDataLength); // Compress data (DEFLATE algorythm)
RLAPI unsigned char *DecompressData(unsigned char *compData, int compDataLength, int *dataLength); // Decompress data (DEFLATE algorythm)
// Persistent storage management
RLAPI void StorageSaveValue(int position, int value); // Save integer value to storage file (to defined position)

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