mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 11:10:39 +00:00
Fix a compiler error on introduced in r5445.
git-svn-id: https://svn.eduke32.com/eduke32@5458 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
33755d847b
commit
27c646b5a7
1 changed files with 2 additions and 2 deletions
|
@ -1029,7 +1029,7 @@ void G_LoadLookups(void)
|
|||
|
||||
//////////
|
||||
|
||||
static int32_t S_TryFormats(char const * const testfn, char * const fn_suffix, char const searchfirst)
|
||||
static int32_t S_TryFormats(char * const testfn, char * const fn_suffix, char const searchfirst)
|
||||
{
|
||||
#ifdef HAVE_FLAC
|
||||
{
|
||||
|
@ -1052,7 +1052,7 @@ static int32_t S_TryFormats(char const * const testfn, char * const fn_suffix, c
|
|||
return -1;
|
||||
}
|
||||
|
||||
static int32_t S_TryExtensionReplacements(char const * const testfn, char const searchfirst, uint8_t const ismusic)
|
||||
static int32_t S_TryExtensionReplacements(char * const testfn, char const searchfirst, uint8_t const ismusic)
|
||||
{
|
||||
char * extension = Bstrrchr(testfn, '.');
|
||||
char * const fn_end = Bstrchr(testfn, '\0');
|
||||
|
|
Loading…
Reference in a new issue