mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Merge pull request #3118 from lioncash/junk
WiimoteEmu: Get rid of an unused clamp function
This commit is contained in:
commit
f1a43dc6d4
1 changed files with 0 additions and 7 deletions
|
@ -80,13 +80,6 @@ void EmulateSwing(AccelData* const accel
|
|||
, ControllerEmu::Force* const tilt_group
|
||||
, const bool sideways = false, const bool upright = false);
|
||||
|
||||
inline double trim(double a)
|
||||
{
|
||||
if (a<=0) return 0;
|
||||
if (a>=255) return 255;
|
||||
return a;
|
||||
}
|
||||
|
||||
enum
|
||||
{
|
||||
ACCEL_ZERO_G = 0x80,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue