summaryrefslogtreecommitdiff
path: root/plugins/mRadio
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2017-12-11 04:15:28 +0300
committerdartraiden <wowemuh@gmail.com>2017-12-11 20:32:20 +0300
commitf5f331cafd8edb884f534b0485ed473ce09d920d (patch)
treec7618efa64b1c85fb8ce60460ae28a33147a0a5e /plugins/mRadio
parentfdf7e2c0ebe4cb89753f293fca52a4311a4c6d53 (diff)
Quotes: proper capitalization; mRadio: proper capitalization
Diffstat (limited to 'plugins/mRadio')
-rw-r--r--plugins/mRadio/rbass.pas18
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/mRadio/rbass.pas b/plugins/mRadio/rbass.pas
index 509d4e9057..2ef45bb08f 100644
--- a/plugins/mRadio/rbass.pas
+++ b/plugins/mRadio/rbass.pas
@@ -304,7 +304,7 @@ begin
mGetMem(basspath,1024);
- // trying to load Bass.dll from custom
+ // trying to load bass.dll from custom
custom:=DBReadUnicode(0,PluginName,optBASSPath,nil);
if custom<>nil then
begin
@@ -339,7 +339,7 @@ begin
result:=Load_BASSDLL(basspath);
if not result then
begin
- pc:=StrCopyW(StrCopyEW(pc,'bass\'),BASSName); // %miranda_path%\plugins\bass\
+ pc:=StrCopyW(StrCopyEW(pc,'BASS\'),BASSName); // %miranda_path%\plugins\BASS\
result:=Load_BASSDLL(basspath);
end;
end;
@@ -348,11 +348,11 @@ begin
// not found but custom path is empty
if (not result) and (custom=nil) then
begin
- if MessageboxW(0,TranslateW('BASS.DLL not found! Choose BASS.dll path manually'),
+ if MessageboxW(0,TranslateW('bass.dll not found! Choose bass.dll path manually'),
cPluginName,MB_YESNO)=IDYES then
begin
pc:=nil;
- if SelectDirectory(TranslateW('Choose BASS.dll path'),pc,0) then
+ if SelectDirectory(TranslateW('Choose bass.dll path'),pc,0) then
begin
//!! if options page opened, need to change edit field
@@ -372,18 +372,18 @@ begin
end;
end;
- // check Bass.dll version
+ // check bass.dll version
if result then
begin
if (BASS_GetVersion shr 16)<BASSVERSION then
begin
Unload_BASSDLL;
result:=false;
- BassError('Wrong version of BASS.DLL');
+ BassError('Wrong version of bass.dll');
end
else
begin
- // load Bass plugins
+ // load BASS plugins
pc:=StrCopyW(pc,'bass*.dll');
fh:=FindFirstFileW(basspath,fd);
if fh<>THANDLE(INVALID_HANDLE_VALUE) then
@@ -391,7 +391,7 @@ begin
repeat
StrCopyW(pc,fd.cFileName);
if BASS_PluginLoad(pAnsiChar(basspath),BASS_UNICODE)=0 then
-;// break; // ignore if unsuccefull plugin load
+;// break; // ignore if unsuccessful plugin load
until not FindNextFileW(fh,fd);
FindClose(fh);
end;
@@ -402,7 +402,7 @@ begin
end
else
begin
- BassError('BASS.DLL not found!');
+ BassError('bass.dll not found!');
end;
mFreeMem(custom);