mirror of
https://github.com/libretro/RetroArch
synced 2024-12-26 21:29:08 +00:00
Silence more CXX_BUILD warnings
This commit is contained in:
parent
6ca9afbd57
commit
7ad34509e7
@ -343,7 +343,7 @@ ifeq ($(HAVE_QT), 1)
|
||||
ui/drivers/qt/coreinfodialog.o \
|
||||
ui/drivers/qt/playlistentrydialog.o \
|
||||
ui/drivers/qt/viewoptionsdialog.o \
|
||||
ui/drivers/qt/playlist.o \
|
||||
ui/drivers/qt/qt_playlist.o \
|
||||
ui/drivers/qt/updateretroarch.o \
|
||||
ui/drivers/qt/thumbnaildownload.o \
|
||||
ui/drivers/qt/thumbnailpackdownload.o \
|
||||
|
2
deps/mbedtls/dhm.c
vendored
2
deps/mbedtls/dhm.c
vendored
@ -530,7 +530,7 @@ static int load_file( const char *path, unsigned char **buf, size_t *n )
|
||||
*n = (size_t) size;
|
||||
|
||||
if( *n + 1 == 0 ||
|
||||
( *buf = mbedtls_calloc( 1, *n + 1 ) ) == NULL )
|
||||
( *buf = (unsigned char*)mbedtls_calloc( 1, *n + 1 ) ) == NULL )
|
||||
{
|
||||
fclose( f );
|
||||
return( MBEDTLS_ERR_DHM_ALLOC_FAILED );
|
||||
|
4
deps/mbedtls/ecp.c
vendored
4
deps/mbedtls/ecp.c
vendored
@ -811,7 +811,7 @@ static int ecp_normalize_jac_many( const mbedtls_ecp_group *grp,
|
||||
}
|
||||
#endif
|
||||
|
||||
if( ( c = mbedtls_calloc( t_len, sizeof( mbedtls_mpi ) ) ) == NULL )
|
||||
if( ( c = (mbedtls_mpi*)mbedtls_calloc( t_len, sizeof( mbedtls_mpi ) ) ) == NULL )
|
||||
return( MBEDTLS_ERR_ECP_ALLOC_FAILED );
|
||||
|
||||
mbedtls_mpi_init( &u ); mbedtls_mpi_init( &Zi ); mbedtls_mpi_init( &ZZi );
|
||||
@ -1406,7 +1406,7 @@ static int ecp_mul_comb( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
||||
|
||||
if( T == NULL )
|
||||
{
|
||||
T = mbedtls_calloc( pre_len, sizeof( mbedtls_ecp_point ) );
|
||||
T = (mbedtls_ecp_point*)mbedtls_calloc( pre_len, sizeof( mbedtls_ecp_point ) );
|
||||
if( T == NULL )
|
||||
{
|
||||
ret = MBEDTLS_ERR_ECP_ALLOC_FAILED;
|
||||
|
2
deps/mbedtls/net_sockets.c
vendored
2
deps/mbedtls/net_sockets.c
vendored
@ -578,7 +578,7 @@ int mbedtls_net_send( void *ctx, const unsigned char *buf, size_t len )
|
||||
|
||||
if( ret < 0 )
|
||||
{
|
||||
if( net_would_block( ctx ) != 0 )
|
||||
if( net_would_block((const mbedtls_net_context*)ctx) != 0 )
|
||||
return( MBEDTLS_ERR_SSL_WANT_WRITE );
|
||||
|
||||
#if ( defined(_WIN32) || defined(_WIN32_WCE) ) && !defined(EFIX64) && \
|
||||
|
@ -151,9 +151,9 @@ void uninit_libretro_sym(struct retro_core_t *core);
|
||||
/* Arbitrary 10 roms for each subsystem limit */
|
||||
#define SUBSYSTEM_MAX_SUBSYSTEM_ROMS 10
|
||||
|
||||
struct retro_subsystem_info subsystem_data[SUBSYSTEM_MAX_SUBSYSTEMS];
|
||||
struct retro_subsystem_rom_info subsystem_data_roms[SUBSYSTEM_MAX_SUBSYSTEMS][SUBSYSTEM_MAX_SUBSYSTEM_ROMS];
|
||||
unsigned subsystem_current_count;
|
||||
extern struct retro_subsystem_info subsystem_data[SUBSYSTEM_MAX_SUBSYSTEMS];
|
||||
extern struct retro_subsystem_rom_info subsystem_data_roms[SUBSYSTEM_MAX_SUBSYSTEMS][SUBSYSTEM_MAX_SUBSYSTEM_ROMS];
|
||||
extern unsigned subsystem_current_count;
|
||||
|
||||
RETRO_END_DECLS
|
||||
|
||||
|
@ -601,7 +601,7 @@ void d3d9x_constant_table_set_matrix(LPDIRECT3DDEVICE9 dev,
|
||||
#if defined(HAVE_D3DX)
|
||||
LPD3DXCONSTANTTABLE consttbl = (LPD3DXCONSTANTTABLE)p;
|
||||
D3DXHANDLE handle = (D3DXHANDLE)data;
|
||||
const D3DXMATRIX *matrix = (const D3DXMATRIX*)matrix;
|
||||
const D3DXMATRIX *matrix = (const D3DXMATRIX*)_matrix;
|
||||
if (consttbl && dev && handle)
|
||||
consttbl->lpVtbl->SetMatrix(consttbl, dev, handle, matrix);
|
||||
#endif
|
||||
|
@ -1742,7 +1742,7 @@ static bool d3d9_read_viewport(void *data, uint8_t *buffer, bool is_idle)
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (d3d9_surface_lock_rect(dest, (void*)&rect))
|
||||
if (d3d9_surface_lock_rect(dest, &rect))
|
||||
{
|
||||
unsigned x, y;
|
||||
unsigned pitchpix = rect.Pitch / 4;
|
||||
@ -1762,7 +1762,7 @@ static bool d3d9_read_viewport(void *data, uint8_t *buffer, bool is_idle)
|
||||
}
|
||||
}
|
||||
|
||||
d3d9_surface_unlock_rect((void*)dest);
|
||||
d3d9_surface_unlock_rect(dest);
|
||||
}
|
||||
else
|
||||
ret = false;
|
||||
|
@ -50,7 +50,7 @@ UI
|
||||
#include "../ui/drivers/qt/coreinfodialog.cpp"
|
||||
#include "../ui/drivers/qt/playlistentrydialog.cpp"
|
||||
#include "../ui/drivers/qt/viewoptionsdialog.cpp"
|
||||
#include "../ui/drivers/qt/playlist.cpp"
|
||||
#include "../ui/drivers/qt/qt_playlist.cpp"
|
||||
#include "../ui/drivers/qt/updateretroarch.cpp"
|
||||
#include "../ui/drivers/qt/thumbnaildownload.cpp"
|
||||
#include "../ui/drivers/qt/thumbnailpackdownload.cpp"
|
||||
|
@ -186,7 +186,7 @@ struct cheat_manager
|
||||
|
||||
typedef struct cheat_manager cheat_manager_t;
|
||||
|
||||
cheat_manager_t cheat_manager_state;
|
||||
extern cheat_manager_t cheat_manager_state;
|
||||
|
||||
unsigned cheat_manager_get_size(void);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user