소스 검색

Build fix

ocornut 10 년 전
부모
커밋
bbced3f0f0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      imgui.cpp

+ 1 - 1
imgui.cpp

@@ -818,7 +818,7 @@ int ImFormatStringV(char* buf, int buf_size, const char* fmt, va_list args)
 
 // Pass data_size==0 for zero-terminated strings
 // FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements.
-ImU32 ImHash(const void* data, int data_size, ImU32) 
+ImU32 ImHash(const void* data, int data_size, ImU32 seed) 
 { 
     static ImU32 crc32_lut[256] = { 0 };
     if (!crc32_lut[1])