1
0
Fork 0

PROJECT+DBG: fixed release.bat & fixed mnemonic help redirections

This commit is contained in:
mrexodia 2016-05-25 17:29:05 +02:00
parent 7b6c4ade4b
commit d6ef3f10d8
2 changed files with 3 additions and 2 deletions

View File

@ -116,6 +116,7 @@ mkdir %RELEASEDIR%\release\x32
mkdir %RELEASEDIR%\release\x64
copy bin\x96dbg.exe %RELEASEDIR%\release\x96dbg.exe
copy bin\mnemdb.json %RELEASEDIR%\release\mnemdb.json
xcopy src\gui\Translations\*.qm %RELEASEDIR%\release\translations /S /Y
copy bin\x32\x32bridge.dll %RELEASEDIR%\release\x32\x32bridge.dll
copy bin\x32\x32bridge.pdb %RELEASEDIR%\release\x32\x32bridge.pdb

View File

@ -91,10 +91,10 @@ String MnemonicHelp::getDescription(const char* mnem, int depth)
if(found == MnemonicMap.end())
return "";
const auto & description = found->second;
if(StringUtils::StartsWith(description, "-R")) //redirect
if(StringUtils::StartsWith(description, "-R:")) //redirect
{
SHARED_RELEASE();
return getDescription(description.c_str() + 2, depth + 1);
return getDescription(description.c_str() + 3, depth + 1);
}
return description;
}