mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-01 18:01:06 +02:00
fix variables
Origin commit data
------------------
Branch: ni/coolstream
Commit: 6be5ef866f
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2021-10-15 (Fri, 15 Oct 2021)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -1175,7 +1175,7 @@ int CNeutrinoApp::loadSetup(const char *fname)
|
||||
sprintf(cfg_key, "quadpip_channel_window_%d", i);
|
||||
g_settings.quadpip_channel_window[i] = configfile.getString(cfg_key, "-");
|
||||
sprintf(cfg_key, "quadpip_channel_id_window_%d", i);
|
||||
g_settings.quadpip_channel_id_window[i] = configfile.getInt32(cfg_key, 0);
|
||||
g_settings.quadpip_channel_id_window[i] = configfile.getInt64(cfg_key, 0);
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -2189,7 +2189,7 @@ void CNeutrinoApp::saveSetup(const char *fname)
|
||||
std::string qp = "quadpip_channel_window_" + to_string(i);
|
||||
configfile.setString(qp, g_settings.quadpip_channel_window[i]);
|
||||
qp = "quadpip_channel_id_window_" + to_string(i);
|
||||
configfile.setInt32(qp, g_settings.quadpip_channel_id_window[i]);
|
||||
configfile.setInt64(qp, g_settings.quadpip_channel_id_window[i]);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user