Skip to content

Commit

Permalink
Revert FileSource rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Jbleezy committed Oct 7, 2024
1 parent bd57f84 commit 351a444
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ namespace
{
// clang-format off
return headerRow.RequireIndexForHeader("Name", m_name)
&& headerRow.RequireIndexForHeader("File", m_file_source)
&& headerRow.RequireIndexForHeader("FileSource", m_file_source)
&& headerRow.RequireIndexForHeader("Secondary", m_secondary)
&& headerRow.RequireIndexForHeader("Storage", m_storage)
&& headerRow.RequireIndexForHeader("Bus", m_bus)
Expand Down
4 changes: 2 additions & 2 deletions src/ObjWriting/Game/T6/AssetDumpers/AssetDumperSndBank.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace
{
const std::string ALIAS_HEADERS[]{
"Name",
"File",
"FileSource",
"Secondary",
"Storage",
"Bus",
Expand Down Expand Up @@ -473,7 +473,7 @@ namespace
// Name
WriteColumnString(stream, alias.name);

// File
// FileSource
const auto* extension = maybeFormat ? ExtensionForSndFormat(*maybeFormat) : "";
WriteColumnString(stream, alias.assetFileName ? std::format("{}{}", alias.assetFileName, extension) : "");

Expand Down

0 comments on commit 351a444

Please sign in to comment.