(MSVC) Build fixes

This commit is contained in:
twinaphex 2015-02-16 16:51:23 +01:00
parent 6390739747
commit 87edea6bd9
2 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,7 @@ static bool zlib_compare_crc32(const char *name, const char *valid_exts,
database_info_rdl_handle_t *database_info_write_rdl_init(const char *dir)
{
const char *exts = "";
database_info_rdl_handle_t *dbl = calloc(1, sizeof(*dbl));
database_info_rdl_handle_t *dbl = (database_info_rdl_handle_t*)calloc(1, sizeof(*dbl));
if (!dbl)
return NULL;

View File

@ -1012,6 +1012,7 @@ rarch_joypad_driver_t dinput_joypad = {
dinput_joypad_query_pad,
dinput_joypad_destroy,
dinput_joypad_button,
NULL,
dinput_joypad_axis,
dinput_joypad_poll,
NULL,