diff options
| author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-06-06 12:58:10 +0300 |
|---|---|---|
| committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-06-06 12:58:10 +0300 |
| commit | 408f47fc9d85e930f2dc1a4cc9f50b3c0d4c60b8 (patch) | |
| tree | 72832cf089e0b26dc6e0585d7c999604421878e2 /src/core/common.h | |
| parent | ps2 audio banks (diff) | |
| download | re3-408f47fc9d85e930f2dc1a4cc9f50b3c0d4c60b8.tar.gz | |
fixed linux saving
Diffstat (limited to 'src/core/common.h')
| -rw-r--r-- | src/core/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/common.h b/src/core/common.h index 7d339660..ff1feb5c 100644 --- a/src/core/common.h +++ b/src/core/common.h @@ -404,7 +404,7 @@ inline T *WriteSaveBuf(uint8 *&buf, const T &value) WriteSaveBuf(buf, b);\ WriteSaveBuf(buf, c);\ WriteSaveBuf(buf, d);\ - WriteSaveBuf(buf, size); + WriteSaveBuf<uint32>(buf, size); #define CheckSaveHeader(buf,a,b,c,d,size)\ assert(ReadSaveBuf<char>(buf) == a);\ |
