Skip to content

Commit

Permalink
ui: ET sounds are not compressed refs #34
Browse files Browse the repository at this point in the history
  • Loading branch information
IR4T4 committed Jan 15, 2013
1 parent 0522922 commit 09acb25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ui/ui_main.c
Expand Up @@ -903,7 +903,7 @@ qboolean Asset_Parse(int handle)
{
return qfalse;
}
uiInfo.uiDC.Assets.menuEnterSound = trap_S_RegisterSound(tempStr, qtrue);
uiInfo.uiDC.Assets.menuEnterSound = trap_S_RegisterSound(tempStr, qfalse);
continue;
}

Expand All @@ -914,7 +914,7 @@ qboolean Asset_Parse(int handle)
{
return qfalse;
}
uiInfo.uiDC.Assets.menuExitSound = trap_S_RegisterSound(tempStr, qtrue);
uiInfo.uiDC.Assets.menuExitSound = trap_S_RegisterSound(tempStr, qfalse);
continue;
}

Expand All @@ -925,7 +925,7 @@ qboolean Asset_Parse(int handle)
{
return qfalse;
}
uiInfo.uiDC.Assets.itemFocusSound = trap_S_RegisterSound(tempStr, qtrue);
uiInfo.uiDC.Assets.itemFocusSound = trap_S_RegisterSound(tempStr, qfalse);
continue;
}

Expand All @@ -936,7 +936,7 @@ qboolean Asset_Parse(int handle)
{
return qfalse;
}
uiInfo.uiDC.Assets.menuBuzzSound = trap_S_RegisterSound(tempStr, qtrue);
uiInfo.uiDC.Assets.menuBuzzSound = trap_S_RegisterSound(tempStr, qfalse);
continue;
}

Expand Down

0 comments on commit 09acb25

Please sign in to comment.