diff options
Diffstat (limited to 'src/osd/sdl/sdlos_macosx.c')
-rw-r--r-- | src/osd/sdl/sdlos_macosx.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/osd/sdl/sdlos_macosx.c b/src/osd/sdl/sdlos_macosx.c index f06b8bcbf03..4f6683f5858 100644 --- a/src/osd/sdl/sdlos_macosx.c +++ b/src/osd/sdl/sdlos_macosx.c @@ -33,9 +33,9 @@ static osd_ticks_t mach_cycle_counter(void); // STATIC VARIABLES //============================================================ -static osd_ticks_t (*cycle_counter)(void) = init_cycle_counter; -static osd_ticks_t (*ticks_counter)(void) = init_cycle_counter; -static osd_ticks_t ticks_per_second; +static osd_ticks_t (*cycle_counter)(void) = init_cycle_counter; +static osd_ticks_t (*ticks_counter)(void) = init_cycle_counter; +static osd_ticks_t ticks_per_second; //============================================================ // init_cycle_counter @@ -107,7 +107,7 @@ osd_ticks_t osd_ticks_per_second(void) { if (ticks_per_second == 0) { - return 1; // this isn't correct, but it prevents the crash + return 1; // this isn't correct, but it prevents the crash } return ticks_per_second; } @@ -238,7 +238,7 @@ char *osd_get_clipboard_text(void) CFIndex flavor_index; ItemCount item_count; UInt32 item_index; - Boolean success = false; + Boolean success = false; err = PasteboardCreate(kPasteboardClipboard, &pasteboard_ref); |