2012-12-20 12:24:49 +01:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-01-22 13:40:32 +01:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2017-12-11 23:55:31 -08:00
|
|
|
*
|
2012-12-20 12:24:49 +01:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INPUT_OVERLAY_H__
|
|
|
|
#define INPUT_OVERLAY_H__
|
|
|
|
|
2015-02-21 09:41:29 +01:00
|
|
|
#include <stdint.h>
|
2014-10-21 05:05:52 +02:00
|
|
|
#include <boolean.h>
|
2015-07-11 08:07:14 +02:00
|
|
|
|
2016-06-03 05:54:21 +02:00
|
|
|
#include <retro_common_api.h>
|
2015-02-23 18:53:13 +01:00
|
|
|
#include <retro_miscellaneous.h>
|
2015-11-23 14:15:19 -03:00
|
|
|
#include <formats/image.h>
|
2019-02-08 08:00:32 +01:00
|
|
|
#include <queues/task_queue.h>
|
2012-12-20 12:24:49 +01:00
|
|
|
|
2021-09-30 21:29:35 +02:00
|
|
|
#include "input_types.h"
|
2017-08-07 21:59:05 -05:00
|
|
|
|
2021-09-07 12:42:03 +02:00
|
|
|
#define OVERLAY_GET_KEY(state, key) (((state)->keys[(key) / 32] >> ((key) % 32)) & 1)
|
|
|
|
#define OVERLAY_SET_KEY(state, key) (state)->keys[(key) / 32] |= 1 << ((key) % 32)
|
|
|
|
|
|
|
|
#define MAX_VISIBILITY 32
|
|
|
|
|
2022-10-30 00:31:27 -05:00
|
|
|
#define CUSTOM_BINDS_U32_COUNT ((RARCH_CUSTOM_BIND_LIST_END - 1) / 32 + 1)
|
|
|
|
|
2016-06-03 05:54:21 +02:00
|
|
|
RETRO_BEGIN_DECLS
|
2013-06-05 10:47:19 +02:00
|
|
|
|
2017-12-11 23:55:31 -08:00
|
|
|
/* Overlay driver acts as a medium between input drivers
|
2014-09-09 17:34:28 +02:00
|
|
|
* and video driver.
|
2014-09-02 16:50:28 +02:00
|
|
|
*
|
2017-12-11 23:55:31 -08:00
|
|
|
* Coordinates are fetched from input driver, and an
|
2014-09-09 17:34:28 +02:00
|
|
|
* overlay with pressable actions are displayed on-screen.
|
|
|
|
*
|
2017-12-11 23:55:31 -08:00
|
|
|
* This interface requires that the video driver has support
|
2014-09-09 17:34:28 +02:00
|
|
|
* for the overlay interface.
|
2014-09-02 16:50:28 +02:00
|
|
|
*/
|
2014-12-29 10:44:35 +01:00
|
|
|
|
|
|
|
typedef struct video_overlay_interface
|
|
|
|
{
|
|
|
|
void (*enable)(void *data, bool state);
|
|
|
|
bool (*load)(void *data,
|
2015-07-11 08:14:39 +02:00
|
|
|
const void *images, unsigned num_images);
|
2014-12-29 10:44:35 +01:00
|
|
|
void (*tex_geom)(void *data, unsigned image,
|
|
|
|
float x, float y, float w, float h);
|
|
|
|
void (*vertex_geom)(void *data, unsigned image,
|
|
|
|
float x, float y, float w, float h);
|
|
|
|
void (*full_screen)(void *data, bool enable);
|
|
|
|
void (*set_alpha)(void *data, unsigned image, float mod);
|
|
|
|
} video_overlay_interface_t;
|
|
|
|
|
|
|
|
enum overlay_hitbox
|
|
|
|
{
|
|
|
|
OVERLAY_HITBOX_RADIAL = 0,
|
2022-11-13 03:46:41 -06:00
|
|
|
OVERLAY_HITBOX_RECT,
|
|
|
|
OVERLAY_HITBOX_NONE
|
2014-12-29 10:44:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enum overlay_type
|
|
|
|
{
|
|
|
|
OVERLAY_TYPE_BUTTONS = 0,
|
|
|
|
OVERLAY_TYPE_ANALOG_LEFT,
|
|
|
|
OVERLAY_TYPE_ANALOG_RIGHT,
|
2022-10-30 00:31:27 -05:00
|
|
|
OVERLAY_TYPE_DPAD_AREA,
|
|
|
|
OVERLAY_TYPE_ABXY_AREA,
|
2014-12-29 10:44:35 +01:00
|
|
|
OVERLAY_TYPE_KEYBOARD
|
|
|
|
};
|
|
|
|
|
2015-02-21 07:29:13 +01:00
|
|
|
enum overlay_status
|
|
|
|
{
|
|
|
|
OVERLAY_STATUS_NONE = 0,
|
|
|
|
OVERLAY_STATUS_DEFERRED_LOAD,
|
2015-02-21 22:00:12 +01:00
|
|
|
OVERLAY_STATUS_DEFERRED_LOADING_IMAGE,
|
2015-02-23 06:03:53 +01:00
|
|
|
OVERLAY_STATUS_DEFERRED_LOADING_IMAGE_PROCESS,
|
2015-02-21 09:26:52 +01:00
|
|
|
OVERLAY_STATUS_DEFERRED_LOADING,
|
2015-02-27 01:25:08 +01:00
|
|
|
OVERLAY_STATUS_DEFERRED_LOADING_RESOLVE,
|
2015-02-21 07:29:13 +01:00
|
|
|
OVERLAY_STATUS_DEFERRED_DONE,
|
2015-07-11 23:45:23 +02:00
|
|
|
OVERLAY_STATUS_DEFERRED_ERROR
|
2015-02-21 07:29:13 +01:00
|
|
|
};
|
|
|
|
|
2015-02-23 06:03:53 +01:00
|
|
|
enum overlay_image_transfer_status
|
|
|
|
{
|
|
|
|
OVERLAY_IMAGE_TRANSFER_NONE = 0,
|
|
|
|
OVERLAY_IMAGE_TRANSFER_BUSY,
|
|
|
|
OVERLAY_IMAGE_TRANSFER_DONE,
|
2015-03-19 23:13:25 +01:00
|
|
|
OVERLAY_IMAGE_TRANSFER_DESC_IMAGE_ITERATE,
|
2015-02-23 20:57:49 +01:00
|
|
|
OVERLAY_IMAGE_TRANSFER_DESC_ITERATE,
|
|
|
|
OVERLAY_IMAGE_TRANSFER_DESC_DONE,
|
2015-06-26 15:53:18 +02:00
|
|
|
OVERLAY_IMAGE_TRANSFER_ERROR
|
2015-02-23 06:03:53 +01:00
|
|
|
};
|
|
|
|
|
2018-01-04 12:45:01 -05:00
|
|
|
enum overlay_visibility
|
|
|
|
{
|
|
|
|
OVERLAY_VISIBILITY_DEFAULT = 0,
|
|
|
|
OVERLAY_VISIBILITY_VISIBLE,
|
|
|
|
OVERLAY_VISIBILITY_HIDDEN
|
|
|
|
};
|
|
|
|
|
2019-10-04 12:15:05 +01:00
|
|
|
enum overlay_orientation
|
|
|
|
{
|
|
|
|
OVERLAY_ORIENTATION_NONE = 0,
|
|
|
|
OVERLAY_ORIENTATION_LANDSCAPE,
|
|
|
|
OVERLAY_ORIENTATION_PORTRAIT
|
|
|
|
};
|
|
|
|
|
2021-05-26 18:15:23 +01:00
|
|
|
enum overlay_show_input_type
|
|
|
|
{
|
|
|
|
OVERLAY_SHOW_INPUT_NONE = 0,
|
|
|
|
OVERLAY_SHOW_INPUT_TOUCHED,
|
|
|
|
OVERLAY_SHOW_INPUT_PHYSICAL,
|
|
|
|
OVERLAY_SHOW_INPUT_LAST
|
|
|
|
};
|
|
|
|
|
2022-11-22 11:29:11 -06:00
|
|
|
enum OVERLAY_LOADER_FLAGS
|
|
|
|
{
|
|
|
|
OVERLAY_LOADER_ENABLE = (1 << 0),
|
|
|
|
OVERLAY_LOADER_HIDE_IN_MENU = (1 << 1),
|
|
|
|
OVERLAY_LOADER_HIDE_WHEN_GAMEPAD_CONNECTED = (1 << 2),
|
|
|
|
OVERLAY_LOADER_RGBA_SUPPORT = (1 << 3)
|
|
|
|
};
|
|
|
|
|
|
|
|
enum INPUT_OVERLAY_FLAGS
|
|
|
|
{
|
|
|
|
INPUT_OVERLAY_ENABLE = (1 << 0),
|
|
|
|
INPUT_OVERLAY_ALIVE = (1 << 1),
|
|
|
|
INPUT_OVERLAY_BLOCKED = (1 << 2)
|
|
|
|
};
|
|
|
|
|
|
|
|
enum OVERLAY_FLAGS
|
|
|
|
{
|
|
|
|
OVERLAY_FULL_SCREEN = (1 << 0),
|
|
|
|
OVERLAY_BLOCK_SCALE = (1 << 1),
|
|
|
|
OVERLAY_BLOCK_X_SEPARATION = (1 << 2),
|
2023-03-31 03:33:39 +03:00
|
|
|
OVERLAY_BLOCK_Y_SEPARATION = (1 << 3),
|
|
|
|
OVERLAY_AUTO_X_SEPARATION = (1 << 4),
|
|
|
|
OVERLAY_AUTO_Y_SEPARATION = (1 << 5)
|
2022-11-22 11:29:11 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
enum OVERLAY_DESC_FLAGS
|
|
|
|
{
|
|
|
|
OVERLAY_DESC_MOVABLE = (1 << 0),
|
|
|
|
/* If true, blocks input from overlapped hitboxes */
|
|
|
|
OVERLAY_DESC_EXCLUSIVE = (1 << 1),
|
|
|
|
/* Similar, but only applies after range_mod takes effect */
|
|
|
|
OVERLAY_DESC_RANGE_MOD_EXCLUSIVE = (1 << 2)
|
|
|
|
};
|
|
|
|
|
2022-10-30 00:31:27 -05:00
|
|
|
typedef struct overlay_eightway_config
|
|
|
|
{
|
|
|
|
input_bits_t up;
|
|
|
|
input_bits_t right;
|
|
|
|
input_bits_t down;
|
|
|
|
input_bits_t left;
|
|
|
|
|
|
|
|
input_bits_t up_right;
|
|
|
|
input_bits_t up_left;
|
|
|
|
input_bits_t down_right;
|
|
|
|
input_bits_t down_left;
|
|
|
|
|
|
|
|
/* diagonal sensitivity */
|
|
|
|
float* slope_high;
|
|
|
|
float* slope_low;
|
|
|
|
} overlay_eightway_config_t;
|
|
|
|
|
2021-09-07 12:42:03 +02:00
|
|
|
struct overlay_desc
|
|
|
|
{
|
|
|
|
struct texture_image image;
|
|
|
|
|
|
|
|
enum overlay_hitbox hitbox;
|
|
|
|
enum overlay_type type;
|
|
|
|
|
|
|
|
unsigned next_index;
|
|
|
|
unsigned image_index;
|
|
|
|
|
|
|
|
float alpha_mod;
|
|
|
|
float range_mod;
|
|
|
|
float analog_saturate_pct;
|
|
|
|
float range_x, range_y;
|
|
|
|
float range_x_mod, range_y_mod;
|
|
|
|
float mod_x, mod_y, mod_w, mod_h;
|
|
|
|
float delta_x, delta_y;
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
/* These are 'raw' x/y values shifted
|
|
|
|
* by a user-configured offset (c.f.
|
|
|
|
* OVERLAY_X/Y_SEPARATION). Used to determine
|
|
|
|
* correct hitbox locations. By default,
|
|
|
|
* will be equal to x/y */
|
|
|
|
float x_shift;
|
|
|
|
float y_shift;
|
|
|
|
|
Overlays: Add 'reach' and 'exclusive' for hitboxes (#14591)
Allows stretching hitboxes and handling their overlap
reach_up, reach_down, reach_left, reach_right:
- Stretches in one direction:
reach_x, reach_y
- Stretches symmetrically
exclusive:
- If true, blocks input from overlapped hitboxes
range_mod_exclusive:
- Similar, but only applies when this hitbox is extended by range_mod
- After range_mod takes effect, has priority over 'exclusive'
E.g. This creates a D-Pad area and extends its hitbox left & right 50%, up 15%, and down 30%. Then applies range_mod_exclusive:
overlay0_desc0 = "dpad_area,0.15,0.57,rect,0.166228,0.295516"
overlay0_desc0_reach_x = 1.5
overlay0_desc0_reach_up = 1.15
overlay0_desc0_reach_down = 1.3
overlay0_desc0_range_mod = 2.0
overlay0_desc0_range_mod_exclusive = true
2022-11-05 15:32:22 -05:00
|
|
|
/* These values are used only for hitbox
|
|
|
|
* detection. A hitbox can be stretched in
|
|
|
|
* any direction(s) by its 'reach' values */
|
|
|
|
float x_hitbox;
|
|
|
|
float y_hitbox;
|
|
|
|
float range_x_hitbox, range_y_hitbox;
|
|
|
|
float reach_right, reach_left, reach_up, reach_down;
|
|
|
|
|
2021-09-07 12:42:03 +02:00
|
|
|
/* This is a retro_key value for keyboards */
|
|
|
|
unsigned retro_key_idx;
|
|
|
|
|
|
|
|
/* This is a bit mask of all input binds to set with this overlay control */
|
|
|
|
input_bits_t button_mask;
|
|
|
|
|
2022-10-30 00:31:27 -05:00
|
|
|
overlay_eightway_config_t *eightway_config;
|
|
|
|
|
2021-09-07 12:42:03 +02:00
|
|
|
char next_index_name[64];
|
2022-11-22 11:29:11 -06:00
|
|
|
|
|
|
|
/* Nonzero if pressed. One bit per input pointer */
|
|
|
|
uint16_t updated;
|
|
|
|
|
|
|
|
uint8_t flags;
|
2021-09-07 12:42:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-11-23 14:15:19 -03:00
|
|
|
struct overlay
|
|
|
|
{
|
2020-09-11 12:53:18 +02:00
|
|
|
struct overlay_desc *descs;
|
|
|
|
struct texture_image *load_images;
|
|
|
|
|
|
|
|
struct texture_image image;
|
2017-09-29 17:11:42 +02:00
|
|
|
|
|
|
|
unsigned load_images_size;
|
2016-11-21 15:00:57 +01:00
|
|
|
unsigned id;
|
2017-09-29 17:11:42 +02:00
|
|
|
unsigned pos_increment;
|
2016-11-21 15:00:57 +01:00
|
|
|
|
2015-11-23 14:15:19 -03:00
|
|
|
size_t size;
|
|
|
|
size_t pos;
|
|
|
|
|
|
|
|
float mod_x, mod_y, mod_w, mod_h;
|
|
|
|
float x, y, w, h;
|
|
|
|
float center_x, center_y;
|
2020-09-17 17:23:07 +01:00
|
|
|
float aspect_ratio;
|
2015-11-23 14:15:19 -03:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2017-09-29 17:11:42 +02:00
|
|
|
float alpha_mod;
|
|
|
|
float range_mod;
|
2020-09-20 23:23:31 +02:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
unsigned size;
|
|
|
|
char key[64];
|
|
|
|
} descs;
|
2017-09-29 17:11:42 +02:00
|
|
|
|
2015-11-23 14:15:19 -03:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
char key[64];
|
|
|
|
char path[PATH_MAX_LENGTH];
|
|
|
|
} paths;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
char key[64];
|
|
|
|
} names;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
char array[256];
|
|
|
|
char key[64];
|
|
|
|
} rect;
|
|
|
|
|
2020-09-20 23:23:31 +02:00
|
|
|
bool normalized;
|
2015-11-23 14:15:19 -03:00
|
|
|
} config;
|
|
|
|
|
2020-09-11 12:53:18 +02:00
|
|
|
char name[64];
|
2022-11-22 11:29:11 -06:00
|
|
|
|
|
|
|
uint8_t flags;
|
2015-11-23 14:15:19 -03:00
|
|
|
};
|
|
|
|
|
2021-09-07 12:42:03 +02:00
|
|
|
typedef struct input_overlay_state
|
2015-11-23 14:15:19 -03:00
|
|
|
{
|
2021-09-07 12:42:03 +02:00
|
|
|
uint32_t keys[RETROK_LAST / 32 + 1];
|
|
|
|
/* Left X, Left Y, Right X, Right Y */
|
|
|
|
int16_t analog[4];
|
|
|
|
/* This is a bitmask of (1 << key_bind_id). */
|
|
|
|
input_bits_t buttons;
|
|
|
|
} input_overlay_state_t;
|
|
|
|
|
|
|
|
struct input_overlay
|
|
|
|
{
|
|
|
|
struct overlay *overlays;
|
|
|
|
const struct overlay *active;
|
|
|
|
void *iface_data;
|
|
|
|
const video_overlay_interface_t *iface;
|
|
|
|
input_overlay_state_t overlay_state;
|
2017-09-29 17:11:42 +02:00
|
|
|
|
2021-09-07 12:42:03 +02:00
|
|
|
size_t index;
|
|
|
|
size_t size;
|
2017-09-29 17:11:42 +02:00
|
|
|
|
|
|
|
unsigned next_index;
|
2015-11-23 14:15:19 -03:00
|
|
|
|
2021-09-07 12:42:03 +02:00
|
|
|
enum overlay_status state;
|
2015-11-23 14:15:19 -03:00
|
|
|
|
2022-11-22 11:29:11 -06:00
|
|
|
uint8_t flags;
|
2015-11-23 14:15:19 -03:00
|
|
|
};
|
|
|
|
|
2020-09-08 13:36:45 +01:00
|
|
|
/* Holds general layout information for an
|
|
|
|
* overlay (overall scaling + positional
|
|
|
|
* offset factors) */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
float scale_landscape;
|
|
|
|
float aspect_adjust_landscape;
|
|
|
|
float x_separation_landscape;
|
|
|
|
float y_separation_landscape;
|
|
|
|
float x_offset_landscape;
|
|
|
|
float y_offset_landscape;
|
|
|
|
float scale_portrait;
|
|
|
|
float aspect_adjust_portrait;
|
|
|
|
float x_separation_portrait;
|
2020-09-17 17:23:07 +01:00
|
|
|
float y_separation_portrait;
|
2020-09-08 13:36:45 +01:00
|
|
|
float x_offset_portrait;
|
|
|
|
float y_offset_portrait;
|
2021-04-06 13:15:43 +02:00
|
|
|
float touch_scale;
|
2020-09-17 17:23:07 +01:00
|
|
|
bool auto_scale;
|
|
|
|
} overlay_layout_desc_t;
|
|
|
|
|
|
|
|
/* Holds derived overlay layout information
|
|
|
|
* for a specific display orientation */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
float x_scale;
|
|
|
|
float y_scale;
|
|
|
|
float x_separation;
|
|
|
|
float y_separation;
|
|
|
|
float x_offset;
|
|
|
|
float y_offset;
|
2020-09-08 13:36:45 +01:00
|
|
|
} overlay_layout_t;
|
|
|
|
|
2015-07-11 08:07:14 +02:00
|
|
|
typedef struct overlay_desc overlay_desc_t;
|
2014-12-29 10:44:35 +01:00
|
|
|
|
2012-12-20 12:24:49 +01:00
|
|
|
typedef struct input_overlay input_overlay_t;
|
|
|
|
|
2015-11-23 14:15:19 -03:00
|
|
|
typedef struct
|
|
|
|
{
|
2020-08-25 11:10:37 +01:00
|
|
|
struct overlay *overlays;
|
|
|
|
struct overlay *active;
|
|
|
|
size_t size;
|
|
|
|
float overlay_opacity;
|
2020-09-17 17:23:07 +01:00
|
|
|
overlay_layout_desc_t layout_desc;
|
2022-10-30 00:31:27 -05:00
|
|
|
uint16_t overlay_types;
|
2022-11-22 11:29:11 -06:00
|
|
|
uint8_t flags;
|
2015-11-23 14:15:19 -03:00
|
|
|
} overlay_task_data_t;
|
|
|
|
|
2015-11-24 22:17:38 -03:00
|
|
|
void input_overlay_free_overlay(struct overlay *overlay);
|
2015-11-23 14:15:19 -03:00
|
|
|
|
2018-01-04 12:45:01 -05:00
|
|
|
void input_overlay_set_visibility(int overlay_idx,enum overlay_visibility vis);
|
|
|
|
|
2021-09-09 14:24:42 +02:00
|
|
|
/* Attempts to automatically rotate the specified overlay.
|
|
|
|
* Depends upon proper naming conventions in overlay
|
|
|
|
* config file. */
|
|
|
|
void input_overlay_auto_rotate_(
|
|
|
|
unsigned video_driver_width,
|
|
|
|
unsigned video_driver_height,
|
|
|
|
bool input_overlay_enable,
|
|
|
|
input_overlay_t *ol);
|
|
|
|
|
2021-09-07 13:08:31 +02:00
|
|
|
void input_overlay_load_active(
|
|
|
|
enum overlay_visibility *visibility,
|
|
|
|
input_overlay_t *ol, float opacity);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* input_overlay_set_scale_factor:
|
|
|
|
* @ol : Overlay handle.
|
|
|
|
* @layout_desc : Scale + offset factors.
|
|
|
|
*
|
|
|
|
* Scales the overlay and applies any aspect ratio/
|
|
|
|
* offset factors.
|
|
|
|
**/
|
|
|
|
void input_overlay_set_scale_factor(
|
|
|
|
input_overlay_t *ol, const overlay_layout_desc_t *layout_desc,
|
|
|
|
unsigned video_driver_width,
|
|
|
|
unsigned video_driver_height);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* input_overlay_set_alpha_mod:
|
|
|
|
* @ol : Overlay handle.
|
|
|
|
* @mod : New modulating factor to apply.
|
|
|
|
*
|
|
|
|
* Sets a modulating factor for alpha channel. Default is 1.0.
|
|
|
|
* The alpha factor is applied for all overlays.
|
|
|
|
**/
|
|
|
|
void input_overlay_set_alpha_mod(
|
|
|
|
enum overlay_visibility *visibility,
|
|
|
|
input_overlay_t *ol, float mod);
|
|
|
|
|
2022-10-30 00:31:27 -05:00
|
|
|
/**
|
|
|
|
* input_overlay_set_eightway_diagonal_sensitivity:
|
|
|
|
*
|
|
|
|
* Gets the slope limits defining each eightway type's diagonal zones.
|
|
|
|
*/
|
2022-11-22 18:34:04 +01:00
|
|
|
void input_overlay_set_eightway_diagonal_sensitivity(void);
|
2022-10-30 00:31:27 -05:00
|
|
|
|
2016-06-03 05:54:21 +02:00
|
|
|
RETRO_END_DECLS
|
2013-06-05 10:47:19 +02:00
|
|
|
|
2012-12-20 12:24:49 +01:00
|
|
|
#endif
|