libretro: cosmetic changes.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
parent
a16b2b2d35
commit
d46c90a82c
2 changed files with 1 additions and 9 deletions
|
@ -121,7 +121,6 @@ void retro_deinit(void)
|
|||
|
||||
unsigned retro_api_version(void)
|
||||
{
|
||||
ra2::log_cb(RETRO_LOG_INFO, "RA2: %s\n", __FUNCTION__);
|
||||
return RETRO_API_VERSION;
|
||||
}
|
||||
|
||||
|
@ -167,7 +166,6 @@ void retro_get_system_info(retro_system_info *info)
|
|||
info->valid_extensions = "bin|do|dsk|nib|po|gz|woz|zip|2mg|2img|iie|apl|hdv|yaml";
|
||||
}
|
||||
|
||||
|
||||
void retro_get_system_av_info(retro_system_av_info *info)
|
||||
{
|
||||
ra2::log_cb(RETRO_LOG_INFO, "RA2: %s\n", __FUNCTION__);
|
||||
|
@ -250,31 +248,26 @@ void retro_set_environment(retro_environment_t cb)
|
|||
|
||||
void retro_set_audio_sample(retro_audio_sample_t cb)
|
||||
{
|
||||
ra2::log_cb(RETRO_LOG_INFO, "RA2: %s\n", __FUNCTION__);
|
||||
ra2::audio_cb = cb;
|
||||
}
|
||||
|
||||
void retro_set_audio_sample_batch(retro_audio_sample_batch_t cb)
|
||||
{
|
||||
ra2::log_cb(RETRO_LOG_INFO, "RA2: %s\n", __FUNCTION__);
|
||||
ra2::audio_batch_cb = cb;
|
||||
}
|
||||
|
||||
void retro_set_input_poll(retro_input_poll_t cb)
|
||||
{
|
||||
ra2::log_cb(RETRO_LOG_INFO, "RA2: %s\n", __FUNCTION__);
|
||||
ra2::input_poll_cb = cb;
|
||||
}
|
||||
|
||||
void retro_set_input_state(retro_input_state_t cb)
|
||||
{
|
||||
ra2::log_cb(RETRO_LOG_INFO, "RA2: %s\n", __FUNCTION__);
|
||||
ra2::input_state_cb = cb;
|
||||
}
|
||||
|
||||
void retro_set_video_refresh(retro_video_refresh_t cb)
|
||||
{
|
||||
ra2::log_cb(RETRO_LOG_INFO, "RA2: %s\n", __FUNCTION__);
|
||||
ra2::video_cb = cb;
|
||||
}
|
||||
|
||||
|
@ -359,7 +352,6 @@ void retro_unload_game(void)
|
|||
|
||||
unsigned retro_get_region(void)
|
||||
{
|
||||
ra2::log_cb(RETRO_LOG_INFO, "RA2: %s\n", __FUNCTION__);
|
||||
return RETRO_REGION_NTSC;
|
||||
}
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@ namespace
|
|||
{
|
||||
if (i > 0)
|
||||
{
|
||||
ss << "|";
|
||||
ss << "|";
|
||||
}
|
||||
ss << var.values[i].first;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue