Fix a few files that have Windows CR-LF endings.

This commit is contained in:
Stephen Anthony 2019-07-25 12:33:54 -02:30
parent d6e2c11275
commit 337b73ff01
2 changed files with 779 additions and 779 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,77 +1,77 @@
//============================================================================ //============================================================================
// //
// SSSS tt lll lll // SSSS tt lll lll
// SS SS tt ll ll // SS SS tt ll ll
// SS tttttt eeee ll ll aaaa // SS tttttt eeee ll ll aaaa
// SSSS tt ee ee ll ll aa // SSSS tt ee ee ll ll aa
// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" // SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator"
// SS SS tt ee ll ll aa aa // SS SS tt ee ll ll aa aa
// SSSS ttt eeeee llll llll aaaaa // SSSS ttt eeeee llll llll aaaaa
// //
// Copyright (c) 1995-2019 by Bradford W. Mott, Stephen Anthony // Copyright (c) 1995-2019 by Bradford W. Mott, Stephen Anthony
// and the Stella Team // and the Stella Team
// //
// See the file "License.txt" for information on usage and redistribution of // See the file "License.txt" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
//============================================================================ //============================================================================
#ifndef AUDIO_DIALOG_HXX #ifndef AUDIO_DIALOG_HXX
#define AUDIO_DIALOG_HXX #define AUDIO_DIALOG_HXX
class CommandSender; class CommandSender;
class Dialog; class Dialog;
class DialogContainer; class DialogContainer;
class PopUpWidget; class PopUpWidget;
class SliderWidget; class SliderWidget;
class StaticTextWidget; class StaticTextWidget;
class CheckboxWidget; class CheckboxWidget;
class OSystem; class OSystem;
class AudioSettings; class AudioSettings;
#include "bspf.hxx" #include "bspf.hxx"
class AudioDialog : public Dialog class AudioDialog : public Dialog
{ {
public: public:
AudioDialog(OSystem& osystem, DialogContainer& parent, const GUI::Font& font); AudioDialog(OSystem& osystem, DialogContainer& parent, const GUI::Font& font);
virtual ~AudioDialog() = default; virtual ~AudioDialog() = default;
private: private:
void loadConfig() override; void loadConfig() override;
void saveConfig() override; void saveConfig() override;
void setDefaults() override; void setDefaults() override;
void updatePreset(); void updatePreset();
void updateEnabledState(); void updateEnabledState();
void updateSettingsWithPreset(AudioSettings&); void updateSettingsWithPreset(AudioSettings&);
void handleCommand(CommandSender* sender, int cmd, int data, int id) override; void handleCommand(CommandSender* sender, int cmd, int data, int id) override;
private: private:
enum { enum {
kSoundEnableChanged = 'ADse', kSoundEnableChanged = 'ADse',
kModeChanged = 'ADmc', kModeChanged = 'ADmc',
kHeadroomChanged = 'ADhc', kHeadroomChanged = 'ADhc',
kBufferSizeChanged = 'ADbc' kBufferSizeChanged = 'ADbc'
}; };
CheckboxWidget* mySoundEnableCheckbox; CheckboxWidget* mySoundEnableCheckbox;
SliderWidget* myVolumeSlider; SliderWidget* myVolumeSlider;
CheckboxWidget* myStereoSoundCheckbox; CheckboxWidget* myStereoSoundCheckbox;
PopUpWidget* myModePopup; PopUpWidget* myModePopup;
PopUpWidget* myFragsizePopup; PopUpWidget* myFragsizePopup;
PopUpWidget* myFreqPopup; PopUpWidget* myFreqPopup;
PopUpWidget* myResamplingPopup; PopUpWidget* myResamplingPopup;
SliderWidget* myHeadroomSlider; SliderWidget* myHeadroomSlider;
SliderWidget* myBufferSizeSlider; SliderWidget* myBufferSizeSlider;
SliderWidget* myDpcPitch; SliderWidget* myDpcPitch;
private: private:
// Following constructors and assignment operators not supported // Following constructors and assignment operators not supported
AudioDialog() = delete; AudioDialog() = delete;
AudioDialog(const AudioDialog&) = delete; AudioDialog(const AudioDialog&) = delete;
AudioDialog(AudioDialog&&) = delete; AudioDialog(AudioDialog&&) = delete;
AudioDialog& operator=(const AudioDialog&) = delete; AudioDialog& operator=(const AudioDialog&) = delete;
AudioDialog& operator=(AudioDialog&&) = delete; AudioDialog& operator=(AudioDialog&&) = delete;
}; };
#endif #endif