Get rid of unused variables

This commit is contained in:
Twinaphex 2014-09-21 18:02:23 +02:00
parent a26c934572
commit 6353240af4
3 changed files with 17 additions and 7 deletions

View File

@ -10,29 +10,41 @@
<string>RetroArch_OSX</string>
<key>IDESourceControlProjectOriginsDictionary</key>
<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>
</dict>
<key>IDESourceControlProjectPath</key>
<string>apple/RetroArch_OSX.xcodeproj/project.xcworkspace</string>
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
<dict>
<key>70479BD4-5741-48BF-B723-C0C79B64DF9A</key>
<key>76200F0D6584D865E96F58DE862E738E88B23A3C</key>
<string>../../../..</string>
<key>C7C12374C7051F8843B3EFA1ACCAF2907102CCF7</key>
<string>../../..</string>
</dict>
<key>IDESourceControlProjectURL</key>
<string>https://github.com/libretro/RetroArch.git</string>
<key>IDESourceControlProjectVersion</key>
<integer>110</integer>
<integer>111</integer>
<key>IDESourceControlProjectWCCIdentifier</key>
<string>70479BD4-5741-48BF-B723-C0C79B64DF9A</string>
<string>C7C12374C7051F8843B3EFA1ACCAF2907102CCF7</string>
<key>IDESourceControlProjectWCConfigurations</key>
<array>
<dict>
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
<string>public.vcs.git</string>
<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>
<string>retroarch</string>
</dict>

View File

@ -74,7 +74,6 @@ static int main_entry_iterate_shutdown(signature(),
int main_entry_decide(signature(), args_type() args)
{
int ret = 0;
if (!rarch_main_iterate())
return main_entry_iterate_shutdown(signature_expand(), args);

View File

@ -304,7 +304,6 @@ static unsigned input_frame(uint64_t trigger_state)
bool menu_iterate(retro_input_t input,
retro_input_t old_input, retro_input_t trigger_input)
{
retro_input_t old_state = 0;
unsigned action = MENU_ACTION_NOOP;
static bool initial_held = true;
static bool first_held = false;