Skip to content

Commit 62be6c2

Browse files
committed
utils: Buildfixes for FACT internal changes
1 parent 6214827 commit 62be6c2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

utils/facttool/facttool.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -880,8 +880,8 @@ void FAudioTool_Update()
880880
soundBanks[i]->variationCodes[j]
881881
)) {
882882
ImGui::Text(
883-
"Flags: %X",
884-
soundBanks[i]->variations[j].flags
883+
"Type: %X",
884+
soundBanks[i]->variations[j].type
885885
);
886886
ImGui::Text(
887887
"Interactive Variable Index: %d",

utils/testparse/testparse.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,12 +298,12 @@ static void print_soundbank(FACTAudioEngine *engine, uint8_t *buf, size_t len)
298298
{
299299
printf(
300300
"\tVariation %d, Code %d:\n"
301-
"\t\tFlags: %X\n"
301+
"\t\tType: %X\n"
302302
"\t\tInteractive Variable Index: %d\n"
303303
"\t\tEntry Count: %d\n",
304304
i,
305305
sb->variationCodes[i],
306-
sb->variations[i].flags,
306+
sb->variations[i].type,
307307
sb->variations[i].variable,
308308
sb->variations[i].entryCount
309309
);

0 commit comments

Comments
 (0)