mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
Double semicolons aren't useful.
This commit is contained in:
parent
4503c6635f
commit
28e2ca74e7
@ -258,7 +258,7 @@ static void *coreaudio_init(const char *device,
|
||||
goto error;
|
||||
|
||||
/* Check returned audio format. */
|
||||
i_size = sizeof(real_desc);;
|
||||
i_size = sizeof(real_desc);
|
||||
if (AudioUnitGetProperty(dev->dev, kAudioUnitProperty_StreamFormat,
|
||||
kAudioUnitScope_Input, 0, &real_desc, &i_size) != noErr)
|
||||
goto error;
|
||||
|
2
deps/7zip/7zDec.c
vendored
2
deps/7zip/7zDec.c
vendored
@ -58,7 +58,7 @@ static uint8_t Readuint8_t(void *pp)
|
||||
p->cur = p->begin;
|
||||
p->end = p->begin + size;
|
||||
if (size != 0)
|
||||
return *p->cur++;;
|
||||
return *p->cur++;
|
||||
}
|
||||
p->extra = True;
|
||||
return 0;
|
||||
|
@ -1054,7 +1054,7 @@ static int deferred_push_rdb_entry_detail(void *data, void *userdata,
|
||||
playlist->entries[j].core_name, "|");
|
||||
|
||||
if (!str_list)
|
||||
continue;;
|
||||
continue;
|
||||
|
||||
if (str_list && str_list->size > 0)
|
||||
strlcpy(elem0, str_list->elems[0].data, sizeof(elem0));
|
||||
|
@ -1259,7 +1259,7 @@ static void update_state_validation(void)
|
||||
gcm_emit_at(gcm_context->current, 7, (((platformTexture->gcmTexture.height) | ((platformTexture->gcmTexture.width) << 16))));
|
||||
gcm_emit_at(gcm_context->current, 8, ((platformTexture->gcmMethods.borderColor)));
|
||||
gcm_emit_at(gcm_context->current, 9, ((((1) << (18)) | ((CELL_GCM_NV4097_SET_TEXTURE_CONTROL3) + (unit) * 0x04))));
|
||||
gcm_emit_at(gcm_context->current, 10, (((platformTexture->gcmTexture.pitch) | ((platformTexture->gcmTexture.depth) << 20))));;
|
||||
gcm_emit_at(gcm_context->current, 10, (((platformTexture->gcmTexture.pitch) | ((platformTexture->gcmTexture.depth) << 20))));
|
||||
gcm_finish_n_commands(gcm_context->current, 11);
|
||||
}
|
||||
else
|
||||
|
@ -747,7 +747,7 @@ static void check_block_hotkey(bool enable_hotkey)
|
||||
bind->joyaxis != AXIS_NONE ||
|
||||
autoconf_bind->key != RETROK_UNKNOWN ||
|
||||
autoconf_bind->joykey != NO_BTN ||
|
||||
autoconf_bind->joyaxis != AXIS_NONE;;
|
||||
autoconf_bind->joyaxis != AXIS_NONE;
|
||||
|
||||
driver.block_hotkey = driver.block_input ||
|
||||
(use_hotkey_enable && !enable_hotkey);
|
||||
|
@ -3636,7 +3636,7 @@ static bool setting_data_append_list_general_options(
|
||||
group_info.name,
|
||||
subgroup_info.name,
|
||||
general_write_handler,
|
||||
general_read_handler);;
|
||||
general_read_handler);
|
||||
|
||||
#ifdef HAVE_THREADS
|
||||
CONFIG_UINT(
|
||||
|
Loading…
x
Reference in New Issue
Block a user