diff options
author | Thierry Crozat | 2018-07-22 21:28:12 +0100 |
---|---|---|
committer | Thierry Crozat | 2018-07-22 21:28:12 +0100 |
commit | 0b6ef93b855660b36ce8641dc5cd36e5d465142b (patch) | |
tree | 016d03e87611710c1dfe146d4ae2b6f889298690 /audio/softsynth | |
parent | 1832dd0babb0b477a59d77f15c3a8d376b37018b (diff) | |
download | scummvm-rg350-0b6ef93b855660b36ce8641dc5cd36e5d465142b.tar.gz scummvm-rg350-0b6ef93b855660b36ce8641dc5cd36e5d465142b.tar.bz2 scummvm-rg350-0b6ef93b855660b36ce8641dc5cd36e5d465142b.zip |
GUI: Use consistent capitalization for options
As discussed on the mailing list we should use title capitalization
only for push buttons and tabs and use sentence capitalization for
everything else.
Diffstat (limited to 'audio/softsynth')
-rw-r--r-- | audio/softsynth/appleiigs.cpp | 2 | ||||
-rw-r--r-- | audio/softsynth/cms.cpp | 2 | ||||
-rw-r--r-- | audio/softsynth/mt32.cpp | 2 | ||||
-rw-r--r-- | audio/softsynth/pcspk.cpp | 4 | ||||
-rw-r--r-- | audio/softsynth/sid.cpp | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/audio/softsynth/appleiigs.cpp b/audio/softsynth/appleiigs.cpp index e07e282de6..49e31b0e7b 100644 --- a/audio/softsynth/appleiigs.cpp +++ b/audio/softsynth/appleiigs.cpp @@ -30,7 +30,7 @@ class AppleIIGSMusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("Apple II GS Emulator (NOT IMPLEMENTED)"); + return _s("Apple II GS emulator (NOT IMPLEMENTED)"); } const char *getId() const { diff --git a/audio/softsynth/cms.cpp b/audio/softsynth/cms.cpp index 206bd36d2d..ce058b515b 100644 --- a/audio/softsynth/cms.cpp +++ b/audio/softsynth/cms.cpp @@ -347,7 +347,7 @@ void CMSEmulator::portWriteIntern(int chip, int offset, int data) { class CMSMusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("Creative Music System Emulator"); + return _s("Creative Music System emulator"); } const char *getId() const { diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp index 38978b8edf..09a8083f7b 100644 --- a/audio/softsynth/mt32.cpp +++ b/audio/softsynth/mt32.cpp @@ -434,7 +434,7 @@ void MidiDriver_ThreadedMT32::onTimer() { class MT32EmuMusicPlugin : public MusicPluginObject { public: const char *getName() const { - return _s("MT-32 Emulator"); + return _s("MT-32 emulator"); } const char *getId() const { diff --git a/audio/softsynth/pcspk.cpp b/audio/softsynth/pcspk.cpp index 72f33a4761..e490583749 100644 --- a/audio/softsynth/pcspk.cpp +++ b/audio/softsynth/pcspk.cpp @@ -136,7 +136,7 @@ int8 PCSpeaker::generateTriangle(uint32 x, uint32 oscLength) { class PCSpeakerMusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("PC Speaker Emulator"); + return _s("PC Speaker emulator"); } const char *getId() const { @@ -155,7 +155,7 @@ MusicDevices PCSpeakerMusicPlugin::getDevices() const { class PCjrMusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("IBM PCjr Emulator"); + return _s("IBM PCjr emulator"); } const char *getId() const { diff --git a/audio/softsynth/sid.cpp b/audio/softsynth/sid.cpp index bafbd4ab53..ac26922514 100644 --- a/audio/softsynth/sid.cpp +++ b/audio/softsynth/sid.cpp @@ -1427,7 +1427,7 @@ int SID::updateClock(cycle_count& delta_t, short* buf, int n, int interleave) { class C64MusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("C64 Audio Emulator"); + return _s("C64 Audio emulator"); } const char *getId() const { |