mirror of
https://github.com/love2d/love.git
synced 2026-08-12 08:30:56 +02:00
Merge branch 'master' into 12.0
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
.git* export-ignore
|
||||
.hg* export-ignore
|
||||
*.c diff=cpp
|
||||
*.cpp diff=cpp
|
||||
*.h diff=cpp
|
||||
@@ -43,7 +43,7 @@ jobs:
|
||||
run: cmake -Bbuild -Hmegasource -T v142 -A %PLATFORM% -DCMAKE_INSTALL_PREFIX=%CD%\install
|
||||
- name: Install
|
||||
shell: cmd
|
||||
run: cmake --build build --config Release --target install
|
||||
run: cmake --build build --config Release --target install -j2
|
||||
- name: Artifact
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
|
||||
Executable → Regular
+11
-2
@@ -24,7 +24,9 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef LOVE_WINDOWS
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <malloc.h>
|
||||
#include <Windows.h>
|
||||
#else
|
||||
#include <unistd.h> // Assume POSIX support.
|
||||
#endif
|
||||
@@ -54,8 +56,15 @@ void alignedFree(void *mem)
|
||||
size_t getPageSize()
|
||||
{
|
||||
#ifdef LOVE_WINDOWS
|
||||
// TODO: Do an actual query.
|
||||
return 4096;
|
||||
static DWORD size = 0;
|
||||
if (size == 0)
|
||||
{
|
||||
SYSTEM_INFO si;
|
||||
GetSystemInfo(&si);
|
||||
size = si.dwPageSize;
|
||||
}
|
||||
|
||||
return (size_t) size;
|
||||
#else
|
||||
static const long size = sysconf(_SC_PAGESIZE);
|
||||
return size > 0 ? (size_t) size : 4096;
|
||||
|
||||
+4304
-2174
File diff suppressed because it is too large
Load Diff
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
@@ -1,6 +1,6 @@
|
||||
# luasocket src/makefile
|
||||
#
|
||||
# Definitions in this section can be overriden on the command line or in the
|
||||
# Definitions in this section can be overridden on the command line or in the
|
||||
# environment.
|
||||
#
|
||||
# These are equivalent:
|
||||
|
||||
@@ -219,7 +219,7 @@ function send_message(mesgt)
|
||||
else send_string(mesgt) end
|
||||
end
|
||||
|
||||
-- set defaul headers
|
||||
-- set default headers
|
||||
local function adjust_headers(mesgt)
|
||||
local lower = lower_headers(mesgt.headers)
|
||||
lower["date"] = lower["date"] or
|
||||
|
||||
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
@@ -34,7 +34,7 @@ namespace lullaby
|
||||
FLACDecoder::FLACDecoder(Data *data, int nbufferSize)
|
||||
: Decoder(data, nbufferSize)
|
||||
{
|
||||
flac = drflac_open_memory(data->getData(), data->getSize());
|
||||
flac = drflac_open_memory(data->getData(), data->getSize(), nullptr);
|
||||
if (flac == nullptr)
|
||||
throw love::Exception("Could not load FLAC file");
|
||||
}
|
||||
@@ -52,7 +52,7 @@ bool FLACDecoder::accepts(const std::string &ext)
|
||||
// Please remove once it's no longer the case.
|
||||
static const std::string supported[] =
|
||||
{
|
||||
"flac", "ogg"
|
||||
"flac", "ogg", ""
|
||||
};
|
||||
|
||||
for (int i = 0; !(supported[i].empty()); i++)
|
||||
@@ -125,4 +125,3 @@ double FLACDecoder::getDuration()
|
||||
} // lullaby
|
||||
} // sound
|
||||
} // love
|
||||
|
||||
|
||||
Reference in New Issue
Block a user