mirror of
https://github.com/libretro/stella2014-libretro.git
synced 2025-02-19 23:30:31 +00:00
Remove unused variables
This commit is contained in:
parent
4e2d6e633f
commit
19b9669ec6
@ -219,7 +219,6 @@ static retro_input_state_t input_state_cb;
|
||||
static retro_environment_t environ_cb;
|
||||
static retro_audio_sample_t audio_cb;
|
||||
static retro_audio_sample_batch_t audio_batch_cb;
|
||||
static struct retro_system_av_info g_av_info;
|
||||
|
||||
static bool libretro_supports_bitmasks = false;
|
||||
|
||||
|
@ -61,12 +61,6 @@ static const string EmptyString("");
|
||||
#define MIN(a, b) ((a < b) ? a : b)
|
||||
#define MAX(a, b) ((a > b) ? a : b)
|
||||
|
||||
// Test whether two characters are equal (case insensitive)
|
||||
static bool BSPF_equalsIgnoreCaseChar(char ch1, char ch2)
|
||||
{
|
||||
return toupper((unsigned char)ch1) == toupper((unsigned char)ch2);
|
||||
}
|
||||
|
||||
// Compare two strings, ignoring case
|
||||
inline int BSPF_compareIgnoreCase(const string& s1, const string& s2)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user