From 785d3f2046b3f256b8f20e8e3ed48dc7e88cf943 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Tue, 29 Jan 2013 13:13:55 +0100 Subject: [PATCH] neutrino.cpp: fix wrong configfile in loadKeys() Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/13204626266ff0d9bea76c707b4b92bd8f32dc00 Author: vanhofen Date: 2013-01-29 (Tue, 29 Jan 2013) Origin message was: ------------------ - neutrino.cpp: fix wrong configfile in loadKeys() ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/neutrino.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 5ca12639c..beec61763 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -3597,11 +3597,11 @@ void CNeutrinoApp::loadKeys(const char * fname) g_settings.key_list_start = tconfig.getInt32( "key_list_start", CRCInput::RC_nokey ); g_settings.key_list_end = tconfig.getInt32( "key_list_end", CRCInput::RC_nokey ); - g_settings.key_timeshift = configfile.getInt32( "key_timeshift", CRCInput::RC_pause ); - g_settings.key_plugin = configfile.getInt32( "key_plugin", CRCInput::RC_nokey ); - g_settings.key_unlock = configfile.getInt32( "key_unlock", CRCInput::RC_setup ); - g_settings.key_screenshot = configfile.getInt32( "key_screenshot", CRCInput::RC_nokey ); - g_settings.key_current_transponder = configfile.getInt32( "key_current_transponder", CRCInput::RC_games ); + g_settings.key_timeshift = tconfig.getInt32( "key_timeshift", CRCInput::RC_pause ); + g_settings.key_plugin = tconfig.getInt32( "key_plugin", CRCInput::RC_nokey ); + g_settings.key_unlock = tconfig.getInt32( "key_unlock", CRCInput::RC_setup ); + g_settings.key_screenshot = tconfig.getInt32( "key_screenshot", CRCInput::RC_nokey ); + g_settings.key_current_transponder = tconfig.getInt32( "key_current_transponder", CRCInput::RC_games ); g_settings.key_quickzap_up = tconfig.getInt32( "key_quickzap_up", CRCInput::RC_up ); g_settings.key_quickzap_down = tconfig.getInt32( "key_quickzap_down", CRCInput::RC_down );