diff options
author | Wohlstand <admin@wohlnet.ru> | 2017-02-28 17:25:23 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2017-02-28 17:25:23 +0300 |
commit | da68b78d315f8ff5430819c05fa3d1224e671eab (patch) | |
tree | 2bac5f474f3fc7b5c9e4e25983e414779b0c7a9c /src/adlmidi.h | |
parent | 285fd4e367ca7383ab57fc81f9e84731a67825bb (diff) | |
download | libADLMIDI-da68b78d315f8ff5430819c05fa3d1224e671eab.tar.gz libADLMIDI-da68b78d315f8ff5430819c05fa3d1224e671eab.tar.bz2 libADLMIDI-da68b78d315f8ff5430819c05fa3d1224e671eab.zip |
Change long double into double because of no necessary for it
Diffstat (limited to 'src/adlmidi.h')
-rw-r--r-- | src/adlmidi.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/adlmidi.h b/src/adlmidi.h index 0a4ed91..89e853f 100644 --- a/src/adlmidi.h +++ b/src/adlmidi.h @@ -52,13 +52,13 @@ struct ADL_MIDIPlayer unsigned int SkipForward; unsigned int QuitWithoutLooping; unsigned int ScaleModulators; - long double delay; - long double carry; + double delay; + double carry; /* The lag between visual content and audio content equals */ /* the sum of these two buffers. */ - long double mindelay; - long double maxdelay; + double mindelay; + double maxdelay; /* For internal usage */ int stored_samples; /* num of collected samples */ |