Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Client/TeamTalkClassic/TeamTalkApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ BOOL CTeamTalkApp::InitInstance()
{
szArg = info.m_args.GetNext(pos);
_tcsncat(msg.szPath, szArg.GetBuffer(), MAX_PATH);
_tcsncat(msg.szPath, _T("¤"), MAX_PATH);
_tcsncat(msg.szPath, _T("¤"), MAX_PATH);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this the same character as here?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AFAIK you need to change this line as well. I cannot test it because I no longer has an installer for Classic that associates .tt files.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That file is fine. Only the file I modified was corrupted due to an encoding issue.

bTTUrl |= StartsWith(szArg, TTURL, FALSE);
bTTUrl |= EndsWith(szArg, _T( TTFILE_EXT ), FALSE);
}
Expand Down
Loading