Warning fixes (23 remain...)

This commit is contained in:
James Haley 2014-08-16 17:30:00 -05:00
parent 6b422a3ed5
commit 0d7f38c751
2 changed files with 2 additions and 2 deletions

View file

@ -86,7 +86,7 @@ int use_libsamplerate = 0;
// of the time: with all the Doom IWAD sound effects, at least. If a PWAD
// is used, clipping might occur.
float libsamplerate_scale = 0.65;
float libsamplerate_scale = 0.65f;
// Hook a sound into the linked list at the head.

View file

@ -666,7 +666,7 @@ static void TXT_FileSelectMousePress(TXT_UNCAST_ARG(fileselect),
}
}
return TXT_WidgetMousePress(fileselect->inputbox, x, y, b);
TXT_WidgetMousePress(fileselect->inputbox, x, y, b);
}
static void TXT_FileSelectFocused(TXT_UNCAST_ARG(fileselect), int focused)