This commit is contained in:
Twinaphex 2018-06-21 07:25:13 +02:00
parent cede1e38f2
commit 467aa30131
4 changed files with 12 additions and 9271 deletions

View File

@ -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>

View File

@ -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);

View File

@ -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