Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
toxieainc committed Jun 28, 2024
1 parent d51a489 commit 73e77b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/altsound_ini_processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ bool AltsoundIniProcessor::parseDuckingProfile(const IniSection& ducking_section
//
// Once the .ini file is created, it can be modified to adjust preference.
//
string AltsoundIniProcessor::get_altound_format(const string& path_in)
string AltsoundIniProcessor::get_altsound_format(const string& path_in)
{
ALT_DEBUG(0, "BEGIN get_altsound_format()");
ALT_INDENT;
Expand Down Expand Up @@ -550,7 +550,7 @@ bool AltsoundIniProcessor::create_altsound_ini(const string& path_in)
ALT_DEBUG(0, "BEGIN AltsoundIniProcessor::create_altsound_ini()");
ALT_INDENT;

const string format = get_altound_format(path_in);
const string format = get_altsound_format(path_in);

if (format.empty()) {
ALT_ERROR(0, "FAILED AltsoundIniProcessor::get_altsound_format()");
Expand Down
2 changes: 1 addition & 1 deletion src/altsound_ini_processor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class AltsoundIniProcessor
bool parseDuckingProfile(const IniSection& ducking_section, ProfileMap& profiles);

// determine altsound format from installed data
string get_altound_format(const string& path_in);
string get_altsound_format(const string& path_in);

// Create altsound.ini file
bool create_altsound_ini(const string& path_in);
Expand Down

0 comments on commit 73e77b4

Please sign in to comment.