Просмотр исходного кода

Fix wrong type in BinaryWriter::InsertByte()

Daniele Bartolini 13 лет назад
Родитель
Сommit
06a5bf18fa
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/streams/Stream.h

+ 1 - 1
src/core/streams/Stream.h

@@ -238,7 +238,7 @@ public:
 	void				WriteDouble(double);
 	void				WriteFloat(float);
 
-	void				InsertByte(uchar val, uint offset);
+	void				InsertByte(uchar val, size_t offset);
 
 	inline Stream*		GetStream() { return mStream; }
 	inline void			SetStream(Stream* stream) { mStream = stream; }