mirror of
https://github.com/libretro/RetroArch
synced 2025-04-24 15:02:35 +00:00
Merge pull request #960 from lioncash/sign
apple_input: Fix a signed-unsigned mismatch warning
This commit is contained in:
commit
511f0ab075
@ -14,7 +14,7 @@
|
|||||||
* If not, see <http://www.gnu.org/licenses/>.
|
* If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "input_common.h"
|
#include "input_common.h"
|
||||||
@ -498,7 +498,7 @@ static void *apple_input_init(void)
|
|||||||
|
|
||||||
static void apple_input_poll(void *data)
|
static void apple_input_poll(void *data)
|
||||||
{
|
{
|
||||||
int i;
|
uint32_t i;
|
||||||
(void)data;
|
(void)data;
|
||||||
|
|
||||||
#ifdef IOS
|
#ifdef IOS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user