mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-15 16:27:57 -05:00
core/hid: Prevent Emulated controller from flapping with multiple inputs devices
This commit is contained in:
@ -138,21 +138,16 @@ private:
|
||||
void LoadTasFiles();
|
||||
|
||||
/** Loads TAS file from the specified player
|
||||
* @param player_index: player number where data is going to be stored
|
||||
* @param player_index: player number to save the script
|
||||
* @param file_index: script number of the file
|
||||
*/
|
||||
void LoadTasFile(size_t player_index);
|
||||
void LoadTasFile(size_t player_index, size_t file_index);
|
||||
|
||||
/** Writes a TAS file from the recorded commands
|
||||
* @param file_name: name of the file to be written
|
||||
*/
|
||||
void WriteTasFile(std::u8string file_name);
|
||||
|
||||
/** Inverts the Y axis polarity
|
||||
* @param old: value of the axis
|
||||
* @return new value of the axis
|
||||
*/
|
||||
TasAnalog FlipAxisY(TasAnalog old);
|
||||
|
||||
/**
|
||||
* Parses a string containing the axis values. X and Y have a range from -32767 to 32767
|
||||
* @param line: string containing axis values with the following format "x;y"
|
||||
|
Reference in New Issue
Block a user