Style nit

This commit is contained in:
twinaphex 2016-01-26 05:56:53 +01:00
parent 41deaa4af8
commit d1d127728d
3 changed files with 10 additions and 5 deletions

View File

@ -88,7 +88,8 @@ static bool utf16_to_char_string(const uint16_t *in, char *s, size_t len)
/* Extract the relative path (needle) from a 7z archive
* (path) and allocate a buf for it to write it in.
* If optional_outfile is set, extract to that instead and don't alloc buffer.
* If optional_outfile is set, extract to that instead
* and don't allocate buffer.
*/
static int read_7zip_file(
const char *path,

View File

@ -187,7 +187,8 @@ void rarch_main_deinit(void);
void rarch_set_paths(const char *path);
int rarch_info_get_capabilities(enum rarch_capabilities type, char *s, size_t len);
int rarch_info_get_capabilities(enum rarch_capabilities type,
char *s, size_t len);
enum rarch_content_type rarch_path_is_media_type(const char *path);

View File

@ -504,7 +504,8 @@ static bool state_manager_pop(state_manager_t *state, const void **data)
compressed = state->data + start + sizeof(size_t);
out = state->thisblock;
state_manager_raw_decompress(compressed, state->maxcompsize, out, state->blocksize);
state_manager_raw_decompress(compressed,
state->maxcompsize, out, state->blocksize);
state->entries--;
*data = state->thisblock;
@ -571,7 +572,8 @@ recheckcapacity:;
newb = state->nextblock;
compressed = state->head + sizeof(size_t);
compressed += state_manager_raw_compress(oldb, newb, state->blocksize, compressed);
compressed += state_manager_raw_compress(oldb, newb,
state->blocksize, compressed);
if (compressed - state->data + state->maxcompsize > state->capacity)
{
@ -707,7 +709,8 @@ void state_manager_check_rewind(bool pressed)
audio_driver_ctl(RARCH_AUDIO_CTL_SETUP_REWIND, NULL);
runloop_msg_queue_push_new(MSG_REWINDING, 0,
runloop_ctl(RUNLOOP_CTL_IS_PAUSED, NULL) ? 1 : 30, true);
runloop_ctl(RUNLOOP_CTL_IS_PAUSED, NULL)
? 1 : 30, true);
core.retro_unserialize(buf, rewind_state.size);
if (bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL))