mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
Some more MISSING_DECLS buildfixes
This commit is contained in:
parent
9d6146dc7a
commit
875023468a
@ -19,6 +19,7 @@
|
||||
#include "stb_image.h"
|
||||
|
||||
#ifdef RARCH_INTERNAL
|
||||
#include "internal_cores.h"
|
||||
#include "../libretro.h"
|
||||
#define IMAGE_CORE_PREFIX(s) libretro_imageviewer_##s
|
||||
#else
|
||||
|
@ -28,6 +28,8 @@
|
||||
#include <clamping.h>
|
||||
#include <rhash.h>
|
||||
|
||||
#include "input_overlay.h"
|
||||
|
||||
#include "../configuration.h"
|
||||
#include "input_common.h"
|
||||
|
||||
@ -1231,7 +1233,7 @@ static void input_overlay_update_desc_geom(input_overlay_t *ol,
|
||||
* update the range modifiers for pressed/unpressed regions
|
||||
* and alpha mods.
|
||||
**/
|
||||
void input_overlay_post_poll(float opacity)
|
||||
static void input_overlay_post_poll(float opacity)
|
||||
{
|
||||
size_t i;
|
||||
input_overlay_t *ol = overlay_ptr;
|
||||
@ -1277,7 +1279,7 @@ void input_overlay_post_poll(float opacity)
|
||||
* Call when there is nothing to poll. Allows overlay to
|
||||
* clear certain state.
|
||||
**/
|
||||
void input_overlay_poll_clear(float opacity)
|
||||
static void input_overlay_poll_clear(float opacity)
|
||||
{
|
||||
size_t i;
|
||||
input_overlay_t *ol = overlay_ptr;
|
||||
@ -1335,7 +1337,7 @@ void input_overlay_next(float opacity)
|
||||
*
|
||||
* Returns: true (1) if overlay is fullscreen, otherwise false (0).
|
||||
**/
|
||||
bool input_overlay_full_screen(void)
|
||||
static bool input_overlay_full_screen(void)
|
||||
{
|
||||
input_overlay_t *ol = overlay_ptr;
|
||||
if (!ol)
|
||||
|
@ -14,12 +14,22 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#if defined(__CELLOS_LV2__)
|
||||
#include <sdk_version.h>
|
||||
|
||||
#if (CELL_SDK_VERSION > 0x340000)
|
||||
#include <sysutil/sysutil_bgmplayback.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#include <file/file_path.h>
|
||||
#include <file/config_file.h>
|
||||
|
||||
#include "menu_setting.h"
|
||||
|
||||
#include "menu.h"
|
||||
#include "menu_input.h"
|
||||
#include "menu_setting.h"
|
||||
#include "menu_hash.h"
|
||||
|
||||
#include "../driver.h"
|
||||
@ -32,15 +42,6 @@
|
||||
#include "../file_ext.h"
|
||||
#include "../performance.h"
|
||||
|
||||
#if defined(__CELLOS_LV2__)
|
||||
#include <sdk_version.h>
|
||||
|
||||
#if (CELL_SDK_VERSION > 0x340000)
|
||||
#include <sysutil/sysutil_bgmplayback.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
static void menu_settings_info_list_free(rarch_setting_info_t *list_info)
|
||||
{
|
||||
if (list_info)
|
||||
|
Loading…
x
Reference in New Issue
Block a user