mirror of
https://github.com/yquake2/ref_vk.git
synced 2025-02-17 01:22:13 +00:00
version bump
This commit is contained in:
parent
def5407ae0
commit
39738797a1
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue