Previous 199869 Revisions Next

r37207 Thursday 16th April, 2015 at 14:22:37 UTC by Vasantha Crabb
Fix build
[3rdparty/bgfx/3rdparty/stb]stb_rect_pack.h
[src/lib/util]xmlfile.c
[src/osd/sdl]aueffectutil.m

trunk/3rdparty/bgfx/3rdparty/stb/stb_rect_pack.h
r245718r245719
488488   return (p->w > q->w) ? -1 : (p->w < q->w);
489489}
490490
491#if 0
491492static int rect_width_compare(const void *a, const void *b)
492493{
493494   stbrp_rect *p = (stbrp_rect *) a;
r245718r245719
498499      return  1;
499500   return (p->h > q->h) ? -1 : (p->h < q->h);
500501}
502#endif
501503
502504static int rect_original_order(const void *a, const void *b)
503505{
trunk/src/lib/util/xmlfile.c
r245718r245719
698698   if ((*curnode)->value != NULL)
699699   {
700700      memcpy(newdata, (*curnode)->value, oldlen);
701      free((*curnode)->value);
701      free((void *)(*curnode)->value);
702702   }
703703   (*curnode)->value = newdata;
704704
trunk/src/osd/sdl/aueffectutil.m
r245718r245719
2020
2121typedef ComponentDescription AudioComponentDescription;
2222
23@protocol NSApplicationDelegate <NSObject>
24@end
25
2326@protocol NSWindowDelegate <NSObject>
2427@end
2528
r245718r245719
723726@end
724727
725728
726@interface AUEffectUtilAppDelegate : NSObject<NSApplicationDelegate>
729@interface AUEffectUtilAppDelegate : NSObject <NSApplicationDelegate>
727730{
728731   EffectInfo      *effects;
729732


Previous 199869 Revisions Next


© 1997-2024 The MAME Team