aboutsummaryrefslogtreecommitdiff
path: root/tools/EventClients
diff options
context:
space:
mode:
authorMemphiz <memphis@machzwo.de>2014-09-23 15:52:56 +0200
committerMemphiz <memphis@machzwo.de>2014-10-19 21:33:04 +0200
commit6197f7b8c2707bed7158ef5ef0a5064a1a322178 (patch)
treec829c42768553d5d4d252e7cc6100e4a94f8d62a /tools/EventClients
parenta09dd6c3805ecd722ae441d50e64bcfc4a572193 (diff)
[osx/rebrand] - adapt pathes in XBMCHelper to reflect changed config
folder
Diffstat (limited to 'tools/EventClients')
-rw-r--r--tools/EventClients/Clients/OSXRemote/xbmchelper_main.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/EventClients/Clients/OSXRemote/xbmchelper_main.mm b/tools/EventClients/Clients/OSXRemote/xbmchelper_main.mm
index 57d86c5c02..bedcfda45a 100644
--- a/tools/EventClients/Clients/OSXRemote/xbmchelper_main.mm
+++ b/tools/EventClients/Clients/OSXRemote/xbmchelper_main.mm
@@ -47,7 +47,7 @@ static const char *options = "hs:umt:vxa:z:";
void usage(void)
{
printf("%s (version %s)\n", PROGNAME, PROGVERS);
- printf(" Sends Apple Remote events to XBMC.\n\n");
+ printf(" Sends Apple Remote events to Kodi.\n\n");
printf("Usage: %s [OPTIONS...]\n\nOptions:\n", PROGNAME);
printf(" -h, --help print this help message and exit.\n");
printf(" -s, --server <addr> send events to the specified IP.\n");
@@ -55,8 +55,8 @@ void usage(void)
printf(" -u, --universal runs in Universal Remote mode.\n");
printf(" -t, --timeout <ms> timeout length for sequences (default: 500ms).\n");
printf(" -m, --multiremote runs in Multi-Remote mode (adds remote identifier as additional idenfier to buttons)\n");
- printf(" -a, --appPath path to XBMC.app (MenuPress launch support).\n");
- printf(" -z, --appHome path to XBMC.app/Content/Resources/XBMX \n");
+ printf(" -a, --appPath path to Kodi.app (MenuPress launch support).\n");
+ printf(" -z, --appHome path to Kodi.app/Content/Resources \n");
printf(" -v, --verbose prints lots of debugging information.\n");
}
@@ -65,7 +65,7 @@ void ReadConfig()
{
// Compute filename.
std::string strFile = getenv("HOME");
- strFile += "/Library/Application Support/XBMC/XBMCHelper.conf";
+ strFile += "/Library/Application Support/Kodi/XBMCHelper.conf";
// Open file.
std::ifstream ifs(strFile.c_str());