Skip to content

Commit 9114627

Browse files
committed
[FIX] : fix the file stats when the files is bigger than 4GB on windows. not sure what happen on unix
1 parent ca74bbc commit 9114627

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ImGuiFileDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ SOFTWARE.
7070

7171
#if defined(__WIN32__) || defined(WIN32) || defined(_WIN32) || defined(__WIN64__) || defined(WIN64) || defined(_WIN64) || defined(_MSC_VER)
7272
#define _IGFD_WIN_
73-
#define stat _stat
73+
#define stat _stati64
7474
#define stricmp _stricmp
7575
#include <cctype>
7676
// this option need c++17

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Android Requirements : Api 21 mini
7575
- can ignore filter Case for file searching
7676
- Keyboard navigation (arrows, backspace, enter)
7777
- Exploring by entering characters (case insensitive)
78-
- Directory bookmarks
78+
- Custom places (bookmarks, devices, whatever you want)
7979
- Directory manual entry (right click on any path element)
8080
- Optional 'Confirm to Overwrite" dialog if file exists
8181
- Thumbnails Display (agnostic way for compatibility with any backend, sucessfully tested with OpenGl and Vulkan)

0 commit comments

Comments
 (0)