mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Ein zu kleines array gefixt :/
This commit is contained in:
parent
3aba954b31
commit
c13b2f9bbe
1 changed files with 2 additions and 2 deletions
|
@ -139,7 +139,7 @@ const char *Default_MenuKey( menuframework_s *m, int key )
|
|||
{
|
||||
const char *sound = NULL;
|
||||
menucommon_s *item;
|
||||
|
||||
|
||||
if ( m )
|
||||
{
|
||||
if ( ( item = Menu_ItemAtCursor( m ) ) != 0 )
|
||||
|
@ -1188,7 +1188,7 @@ static void UpdateOGGVolumeFunc( void *unused )
|
|||
OGG_Stop();
|
||||
if (atoi(cl.configstrings[CS_CDTRACK]) < 10)
|
||||
{
|
||||
char tmp[2] = "0";
|
||||
char tmp[3] = "0";
|
||||
OGG_ParseCmd(strcat(tmp, cl.configstrings[CS_CDTRACK]));
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue