1
0
mirror of https://github.com/libretro/RetroArch synced 2024-06-28 22:44:21 +00:00

Revert "Cleanups - remove/silence warnings"

This reverts commit cf04a2c0fe.
This commit is contained in:
libretroadmin 2024-06-15 06:20:55 +02:00
parent 1257a10686
commit 6cc5c414da
3 changed files with 20 additions and 4 deletions

View File

@ -581,7 +581,7 @@ static void retropad_update_input(void)
}
}
static void netretropad_open_udp_socket(void)
static void open_UDP_socket()
{
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();
netretropad_open_udp_socket();
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();
netretropad_open_udp_socket();
open_UDP_socket();
/* If a .ratst file is given (only possible via command line),
* initialize test sequence. */

View File

@ -63,6 +63,22 @@
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

View File

@ -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 = (int)selection;
new_selection = selection;
if (new_selection != (int)selection)
{