diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-06-28 16:11:12 +0200 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-06-28 16:35:25 +0200 |
commit | 22e8e0eff8bc7444fc1d359048263cb715ca11e3 (patch) | |
tree | a6912af9b70f5c847114c314fe00e8fab0d687f9 /src/skel | |
parent | rename clamp macro to Clamp to fix compilation with g++11 (diff) | |
download | re3-22e8e0eff8bc7444fc1d359048263cb715ca11e3.tar re3-22e8e0eff8bc7444fc1d359048263cb715ca11e3.tar.gz re3-22e8e0eff8bc7444fc1d359048263cb715ca11e3.tar.bz2 re3-22e8e0eff8bc7444fc1d359048263cb715ca11e3.tar.lz re3-22e8e0eff8bc7444fc1d359048263cb715ca11e3.tar.xz re3-22e8e0eff8bc7444fc1d359048263cb715ca11e3.tar.zst re3-22e8e0eff8bc7444fc1d359048263cb715ca11e3.zip |
Diffstat (limited to '')
-rw-r--r-- | src/skel/crossplatform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/skel/crossplatform.h b/src/skel/crossplatform.h index 710a7702..6da13fb3 100644 --- a/src/skel/crossplatform.h +++ b/src/skel/crossplatform.h @@ -143,7 +143,7 @@ typedef void* HANDLE; struct WIN32_FIND_DATA { char extension[32]; // for searching - char folder[32]; // for searching + char folder[MAX_PATH]; // for searching char cFileName[256]; // because tSkinInfo has it 256 time_t ftLastWriteTime; }; |