mirror of
https://github.com/libretro/RetroArch
synced 2025-03-24 04:44:02 +00:00
Cleanups
This commit is contained in:
parent
cede1e38f2
commit
467aa30131
@ -7,7 +7,7 @@
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "metal_common.h"
|
||||
#import "cocoa_common.h"
|
||||
#import "../../ui/drivers/cocoa/cocoa_common.h"
|
||||
#import <memory.h>
|
||||
#import <gfx/video_frame.h>
|
||||
#import <Metal/Metal.h>
|
||||
|
@ -767,7 +767,7 @@ void input_config_clear_device_display_name(unsigned port);
|
||||
|
||||
void input_config_clear_device_config_name(unsigned port);
|
||||
|
||||
unsigned input_config_get_device_count();
|
||||
unsigned input_config_get_device_count(void);
|
||||
|
||||
unsigned *input_config_get_device_ptr(unsigned port);
|
||||
|
||||
|
@ -45,7 +45,10 @@ static INLINE bool string_is_equal(const char *a, const char *b)
|
||||
if (!a || !b)
|
||||
return false;
|
||||
while(*a && (*a == *b))
|
||||
a++, b++;
|
||||
{
|
||||
a++;
|
||||
b++;
|
||||
}
|
||||
return (*(const unsigned char*)a - *(const unsigned char*)b) == 0;
|
||||
}
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user