(XDK1) Buildfixes

This commit is contained in:
twinaphex 2015-03-30 02:18:58 +02:00
parent 318b74332e
commit 9a1b258d13
2 changed files with 9 additions and 2 deletions

View File

@ -665,9 +665,8 @@ SCREENSHOTS
============================================================ */
#if defined(_XBOX1)
#include "../xdk/screenshot_xdk1.c"
#else
#include "../screenshot.c"
#endif
#include "../screenshot.c"
/*============================================================
PLAYLISTS

View File

@ -21,6 +21,10 @@
#include <stddef.h>
#include <boolean.h>
#ifdef __cplusplus
extern "C" {
#endif
bool screenshot_dump(const char *folder, const void *frame,
unsigned width, unsigned height, int pitch, bool bgr24);
@ -28,4 +32,8 @@ void screenshot_generate_filename(char *filename, size_t size);
bool take_screenshot(void);
#ifdef __cplusplus
}
#endif
#endif