-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RTP stuff #1139
RTP stuff #1139
Conversation
carstene1ns
commented
Apr 3, 2017
- Add support for our RTP
- Supports multiple RTPs to be set from environment
- Adds official English 2k RTP names
Update manual page accordingly
src/filefinder.cpp
Outdated
|
||
// Windows paths are split by semicolon, Unix paths by colon | ||
std::function<bool(char32_t)> f = [](char32_t t) { | ||
return t == ';' || t == ':'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This must be if-defed because Splitting at ":" will damage the path on Windows due to the drive letters being C:\
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Besides that minor doc thing: lgtm
|
||
NOTE: All '*_RTP_PATH' variables support directory lists, using colon (':') or | ||
semicolon (';') as separator. Useful when you have multiple translated RTP | ||
versions or directories with extra files. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove "or semicolon(';')" because no manpage support unter Windows
Our manual page is not really limited by the platform, everthing documented there should work under Windows as well. We could even ship a html version with the |
Jenkins: Test this please |