mirror of
https://github.com/love2d/love.git
synced 2026-08-17 19:23:38 +02:00
made building from source on OS X a hell of a lot easier - no more .dylibs, and all the header files are contained in the frameworks (as they should be!)
This commit is contained in:
@@ -26,7 +26,11 @@
|
||||
#include "Decoder.h"
|
||||
|
||||
// libmpg123
|
||||
#ifdef LOVE_MACOSX
|
||||
#include <mpg123/mpg123.h>
|
||||
#else
|
||||
#include <mpg123.h>
|
||||
#endif
|
||||
|
||||
namespace love
|
||||
{
|
||||
@@ -55,7 +59,7 @@ namespace lullaby
|
||||
bool seek(float s);
|
||||
bool rewind();
|
||||
bool isSeekable();
|
||||
int getChannels() const;
|
||||
int getChannels() const;
|
||||
int getBits() const;
|
||||
|
||||
}; // Decoder
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#include "ModPlugDecoder.h"
|
||||
#include "Mpg123Decoder.h"
|
||||
#include "VorbisDecoder.h"
|
||||
#include "FLACDecoder.h"
|
||||
//#include "FLACDecoder.h"
|
||||
|
||||
namespace love
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user