(Libretro SDK) Fixup memory_stream.c

This commit is contained in:
twinaphex 2015-02-17 01:58:26 +01:00
parent 59c6bfc772
commit 66682b42f1
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include "memory_stream.h"
#include <file/memory_stream.h>
static uint8_t* g_buffer = NULL;
static size_t g_size = 0;

View File

@ -1,6 +1,6 @@
TARGET := rpng
SOURCES := $(wildcard *.c)
SOURCES := $(wildcard *.c) ../../file/memory_stream.c
OBJS := $(SOURCES:.c=.o)
CFLAGS += -Wall -pedantic -std=gnu99 -O0 -g -DHAVE_ZLIB -DHAVE_ZLIB_DEFLATE -DRPNG_TEST -I../../include