Skip to content

Commit

Permalink
Merge branch 'main' into 12.0-development
Browse files Browse the repository at this point in the history
  • Loading branch information
slime73 committed Dec 25, 2023
2 parents 8423b82 + 0df51cf commit 4631bc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Released: N/A
LOVE 11.5 [Mysterious Mysteries]
--------------------------------

Released: N/A
Released: 2023-12-03

* Added "LÖVE Loader" launcher on Android for easier loading of .love files.

Expand Down
2 changes: 1 addition & 1 deletion src/libraries/physfs/physfs_platform_windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ static inline HANDLE winCreateFileW(const WCHAR *wfname, const DWORD mode,
const DWORD creation)
{
const DWORD share = FILE_SHARE_READ | FILE_SHARE_WRITE;
#if defined(PHYSFS_PLATFORM_WINRT) || (_WIN32_WINNT >= 0x0602) // Windows 8+
#if defined(PHYSFS_PLATFORM_WINRT) /*|| (_WIN32_WINNT >= 0x0602)*/ // Windows 8+
return CreateFile2(wfname, mode, share, creation, NULL);
#else
return CreateFileW(wfname, mode, share, NULL, creation,
Expand Down

0 comments on commit 4631bc5

Please sign in to comment.