Merge branch 'master' into 12.0

This commit is contained in:
Alex Szpakowski
2020-01-30 20:03:24 -04:00
25 changed files with 4325 additions and 2182 deletions
+5
View File
@@ -0,0 +1,5 @@
.git* export-ignore
.hg* export-ignore
*.c diff=cpp
*.cpp diff=cpp
*.h diff=cpp
+1 -1
View File
@@ -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
View File
+11 -2
View File
@@ -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;
File diff suppressed because it is too large Load Diff
View File
View File
View File
Executable → Regular
View File
Executable → Regular
View File
@@ -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
View File
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
Executable → Regular
View File
+2 -3
View File
@@ -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