| 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 |
| r245718 | r245719 | |
|---|---|---|
| 488 | 488 | return (p->w > q->w) ? -1 : (p->w < q->w); |
| 489 | 489 | } |
| 490 | 490 | |
| 491 | #if 0 | |
| 491 | 492 | static int rect_width_compare(const void *a, const void *b) |
| 492 | 493 | { |
| 493 | 494 | stbrp_rect *p = (stbrp_rect *) a; |
| r245718 | r245719 | |
| 498 | 499 | return 1; |
| 499 | 500 | return (p->h > q->h) ? -1 : (p->h < q->h); |
| 500 | 501 | } |
| 502 | #endif | |
| 501 | 503 | |
| 502 | 504 | static int rect_original_order(const void *a, const void *b) |
| 503 | 505 | { |
| r245718 | r245719 | |
|---|---|---|
| 698 | 698 | if ((*curnode)->value != NULL) |
| 699 | 699 | { |
| 700 | 700 | memcpy(newdata, (*curnode)->value, oldlen); |
| 701 | free((*curnode)->value); | |
| 701 | free((void *)(*curnode)->value); | |
| 702 | 702 | } |
| 703 | 703 | (*curnode)->value = newdata; |
| 704 | 704 |
| r245718 | r245719 | |
|---|---|---|
| 20 | 20 | |
| 21 | 21 | typedef ComponentDescription AudioComponentDescription; |
| 22 | 22 | |
| 23 | @protocol NSApplicationDelegate <NSObject> | |
| 24 | @end | |
| 25 | ||
| 23 | 26 | @protocol NSWindowDelegate <NSObject> |
| 24 | 27 | @end |
| 25 | 28 | |
| r245718 | r245719 | |
| 723 | 726 | @end |
| 724 | 727 | |
| 725 | 728 | |
| 726 | @interface AUEffectUtilAppDelegate : NSObject<NSApplicationDelegate> | |
| 729 | @interface AUEffectUtilAppDelegate : NSObject <NSApplicationDelegate> | |
| 727 | 730 | { |
| 728 | 731 | EffectInfo *effects; |
| 729 | 732 |
| https://github.com/mamedev/mame/commit/bf30ebe77ea5e51587eacace83e20d9a6cce04a2 |
| Previous | 199869 Revisions | Next |