(PS3) Fix build on PS3

This commit is contained in:
Twinaphex 2012-07-16 06:09:41 +02:00
parent eb20bf47ea
commit 9695761cfe
2 changed files with 13 additions and 10 deletions

View File

@ -25,6 +25,10 @@
#endif
#endif
#ifdef __CELLOS_LV2__
#include <sys/sys_time.h>
#endif
#if defined(__CELLOS_LV2__) || defined(_MSC_VER)
static int gettimeofday(struct timeval *val, void *dummy)
{
@ -36,7 +40,6 @@ static int gettimeofday(struct timeval *val, void *dummy)
#endif
#if defined(__CELLOS_LV2__)
#include <sys/sys_time.h>
uint64_t usec = sys_time_get_system_time();
#else
uint64_t usec = msec * 1000;

View File

@ -21,7 +21,7 @@
typedef struct
{
unsigned enum_id; /* enum ID of item */
unsigned char enum_id; /* enum ID of item */
char text[256]; /* item label */
char setting_text[256]; /* setting label */
float text_xpos; /* text X position (upper left corner) */
@ -30,18 +30,18 @@ typedef struct
char comment[256]; /* item comment */
unsigned item_color; /* color of item */
float comment_ypos; /* comment Y position (upper left corner) */
unsigned page; /* page */
unsigned char page; /* page */
} item;
typedef struct
{
char title[64]; /* menu title */
unsigned enum_id; /* enum ID of menu */
unsigned selected; /* index of selected item */
unsigned page; /* page */
unsigned first_setting; /* first setting */
unsigned max_settings; /* max no of settings in menu */
unsigned category_id; /* category ID */
char title[64];
unsigned char enum_id;
unsigned char selected;
unsigned char page;
unsigned char first_setting;
unsigned char max_settings;
unsigned char category_id;
} menu;
enum