mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 13:20:30 +00:00
Cleanups - remove/silence warnings
This commit is contained in:
parent
1b161fad1d
commit
cf04a2c0fe
@ -581,7 +581,7 @@ static void retropad_update_input(void)
|
||||
}
|
||||
}
|
||||
|
||||
static void open_UDP_socket()
|
||||
static void netretropad_open_udp_socket(void)
|
||||
{
|
||||
socket_target_t in_target;
|
||||
|
||||
@ -702,7 +702,7 @@ void NETRETROPAD_CORE_PREFIX(retro_set_video_refresh)(retro_video_refresh_t cb)
|
||||
void NETRETROPAD_CORE_PREFIX(retro_reset)(void)
|
||||
{
|
||||
netretropad_check_variables();
|
||||
open_UDP_socket();
|
||||
netretropad_open_udp_socket();
|
||||
}
|
||||
|
||||
void NETRETROPAD_CORE_PREFIX(retro_run)(void)
|
||||
@ -985,7 +985,7 @@ void NETRETROPAD_CORE_PREFIX(retro_run)(void)
|
||||
bool NETRETROPAD_CORE_PREFIX(retro_load_game)(const struct retro_game_info *info)
|
||||
{
|
||||
netretropad_check_variables();
|
||||
open_UDP_socket();
|
||||
netretropad_open_udp_socket();
|
||||
|
||||
/* If a .ratst file is given (only possible via command line),
|
||||
* initialize test sequence. */
|
||||
|
16
deps/glslang/glslang/glslang/Include/PoolAlloc.h
vendored
16
deps/glslang/glslang/glslang/Include/PoolAlloc.h
vendored
@ -63,22 +63,6 @@
|
||||
|
||||
namespace glslang {
|
||||
|
||||
// If we are using guard blocks, we must track each individual
|
||||
// allocation. If we aren't using guard blocks, these
|
||||
// never get instantiated, so won't have any impact.
|
||||
//
|
||||
|
||||
class TAllocation {
|
||||
public:
|
||||
TAllocation(size_t size, unsigned char* mem, TAllocation* prev = 0) :
|
||||
size(size), mem(mem), prevAlloc(prev) { }
|
||||
|
||||
private:
|
||||
size_t size; // size of the user data area
|
||||
unsigned char* mem; // beginning of our allocation (pts to header)
|
||||
TAllocation* prevAlloc; // prior allocation in the chain
|
||||
};
|
||||
|
||||
//
|
||||
// There are several stacks. One is to track the pushing and popping
|
||||
// of the user, and not yet implemented. The others are simply a
|
||||
|
2
deps/mbedtls/bignum.c
vendored
2
deps/mbedtls/bignum.c
vendored
@ -1101,7 +1101,7 @@ __attribute__ ((noinline))
|
||||
#endif
|
||||
void mpi_mul_hlp( size_t i, mbedtls_mpi_uint *s, mbedtls_mpi_uint *d, mbedtls_mpi_uint b )
|
||||
{
|
||||
mbedtls_mpi_uint c = 0, t = 0;
|
||||
mbedtls_mpi_uint c = 0;
|
||||
|
||||
#if defined(MULADDC_HUIT)
|
||||
for( ; i >= 8; i -= 8 )
|
||||
|
@ -8108,7 +8108,7 @@ static enum menu_action ozone_parse_menu_entry_action(
|
||||
|
||||
if ( !menu_navigation_wraparound_enable
|
||||
&& selection == ozone->system_tab_end + horizontal_list_size)
|
||||
new_selection = selection;
|
||||
new_selection = (int)selection;
|
||||
|
||||
if (new_selection != (int)selection)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user