Get rid of unused variables
This commit is contained in:
parent
a26c934572
commit
6353240af4
|
@ -10,29 +10,41 @@
|
||||||
<string>RetroArch_OSX</string>
|
<string>RetroArch_OSX</string>
|
||||||
<key>IDESourceControlProjectOriginsDictionary</key>
|
<key>IDESourceControlProjectOriginsDictionary</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>70479BD4-5741-48BF-B723-C0C79B64DF9A</key>
|
<key>76200F0D6584D865E96F58DE862E738E88B23A3C</key>
|
||||||
|
<string>https://github.com/libretro/libretro-super.git</string>
|
||||||
|
<key>C7C12374C7051F8843B3EFA1ACCAF2907102CCF7</key>
|
||||||
<string>https://github.com/libretro/RetroArch.git</string>
|
<string>https://github.com/libretro/RetroArch.git</string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>IDESourceControlProjectPath</key>
|
<key>IDESourceControlProjectPath</key>
|
||||||
<string>apple/RetroArch_OSX.xcodeproj/project.xcworkspace</string>
|
<string>apple/RetroArch_OSX.xcodeproj/project.xcworkspace</string>
|
||||||
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
|
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>70479BD4-5741-48BF-B723-C0C79B64DF9A</key>
|
<key>76200F0D6584D865E96F58DE862E738E88B23A3C</key>
|
||||||
|
<string>../../../..</string>
|
||||||
|
<key>C7C12374C7051F8843B3EFA1ACCAF2907102CCF7</key>
|
||||||
<string>../../..</string>
|
<string>../../..</string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>IDESourceControlProjectURL</key>
|
<key>IDESourceControlProjectURL</key>
|
||||||
<string>https://github.com/libretro/RetroArch.git</string>
|
<string>https://github.com/libretro/RetroArch.git</string>
|
||||||
<key>IDESourceControlProjectVersion</key>
|
<key>IDESourceControlProjectVersion</key>
|
||||||
<integer>110</integer>
|
<integer>111</integer>
|
||||||
<key>IDESourceControlProjectWCCIdentifier</key>
|
<key>IDESourceControlProjectWCCIdentifier</key>
|
||||||
<string>70479BD4-5741-48BF-B723-C0C79B64DF9A</string>
|
<string>C7C12374C7051F8843B3EFA1ACCAF2907102CCF7</string>
|
||||||
<key>IDESourceControlProjectWCConfigurations</key>
|
<key>IDESourceControlProjectWCConfigurations</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
<dict>
|
||||||
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
|
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
|
||||||
<string>public.vcs.git</string>
|
<string>public.vcs.git</string>
|
||||||
<key>IDESourceControlWCCIdentifierKey</key>
|
<key>IDESourceControlWCCIdentifierKey</key>
|
||||||
<string>70479BD4-5741-48BF-B723-C0C79B64DF9A</string>
|
<string>76200F0D6584D865E96F58DE862E738E88B23A3C</string>
|
||||||
|
<key>IDESourceControlWCCName</key>
|
||||||
|
<string></string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
|
||||||
|
<string>public.vcs.git</string>
|
||||||
|
<key>IDESourceControlWCCIdentifierKey</key>
|
||||||
|
<string>C7C12374C7051F8843B3EFA1ACCAF2907102CCF7</string>
|
||||||
<key>IDESourceControlWCCName</key>
|
<key>IDESourceControlWCCName</key>
|
||||||
<string>retroarch</string>
|
<string>retroarch</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
|
|
@ -74,7 +74,6 @@ static int main_entry_iterate_shutdown(signature(),
|
||||||
|
|
||||||
int main_entry_decide(signature(), args_type() args)
|
int main_entry_decide(signature(), args_type() args)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
|
||||||
if (!rarch_main_iterate())
|
if (!rarch_main_iterate())
|
||||||
return main_entry_iterate_shutdown(signature_expand(), args);
|
return main_entry_iterate_shutdown(signature_expand(), args);
|
||||||
|
|
||||||
|
|
|
@ -304,7 +304,6 @@ static unsigned input_frame(uint64_t trigger_state)
|
||||||
bool menu_iterate(retro_input_t input,
|
bool menu_iterate(retro_input_t input,
|
||||||
retro_input_t old_input, retro_input_t trigger_input)
|
retro_input_t old_input, retro_input_t trigger_input)
|
||||||
{
|
{
|
||||||
retro_input_t old_state = 0;
|
|
||||||
unsigned action = MENU_ACTION_NOOP;
|
unsigned action = MENU_ACTION_NOOP;
|
||||||
static bool initial_held = true;
|
static bool initial_held = true;
|
||||||
static bool first_held = false;
|
static bool first_held = false;
|
||||||
|
|
Loading…
Reference in New Issue