| 2521 | return m_pSettings->GetBool( pchSection, pchSettingsKey, peError ); |
| 2522 | } |
| 2523 | int32_t GetInt32( const char *pchSection, const char *pchSettingsKey, EVRSettingsError *peError = nullptr ) |
| 2524 | { |
| 2525 | return m_pSettings->GetInt32( pchSection, pchSettingsKey, peError ); |
| 2526 | } |
| 2527 | float GetFloat( const char *pchSection, const char *pchSettingsKey, EVRSettingsError *peError = nullptr ) |
| 2528 | { |
| 2529 | return m_pSettings->GetFloat( pchSection, pchSettingsKey, peError ); |
nothing calls this directly
no outgoing calls
no test coverage detected