mirror of
https://github.com/libretro/beetle-saturn-libretro.git
synced 2024-11-23 09:19:49 +00:00
fix for case sensitive file systems
This commit is contained in:
parent
c7f2c6cd67
commit
66f8672c00
@ -2,7 +2,7 @@
|
||||
#include "libretro.h"
|
||||
#include "mednafen/mednafen-types.h"
|
||||
#include "mednafen/ss/ss.h"
|
||||
#include "mednafen/ss/SMPC.h"
|
||||
#include "mednafen/ss/smpc.h"
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -227,7 +227,7 @@ void input_update( retro_input_state_t input_state_cb )
|
||||
//
|
||||
// -- 3d control pad buttons
|
||||
|
||||
// input_map_pad is configured to quickly map libretro buttons to the correct bits for the Saturn.
|
||||
// input_map_3d_pad is configured to quickly map libretro buttons to the correct bits for the Saturn.
|
||||
for ( int i = 0; i < INPUT_MAP_3D_PAD_SIZE; ++i ) {
|
||||
p_input->buttons |= input_state_cb( iplayer, RETRO_DEVICE_JOYPAD, 0, input_map_3d_pad[ i ] ) ? ( 1 << i ) : 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user