version bump

This commit is contained in:
Denis Pauk 2022-12-11 18:02:06 +02:00
parent def5407ae0
commit 39738797a1
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@
#include "shared_safe.h"
#include "crc.h"
#define VKVERSION "1.0"
#define VKVERSION "1.0.3"
#ifndef YQ2OSTYPE
#error YQ2OSTYPE should be defined by the build system

View File

@ -1448,7 +1448,7 @@ File_Filtered_Line(const char *name, const char *filter)
const char *name_part;
const char *str_end;
str_end = index(current_filter, '*');
str_end = strchr(current_filter, '*');
if (!str_end)
{
if (!strstr(name, current_filter))
@ -1496,7 +1496,7 @@ File_Filtered(const char *name, const char *filter)
char line_filter[MAX_QPATH];
const char *str_end;
str_end = index(current_filter, ' ');
str_end = strchr(current_filter, ' ');
// its end of filter
if (!str_end)
{