mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-09 20:18:17 +03:00
Fixed beam const vec3_t parameter
This commit is contained in:
parent
819fe53eaa
commit
7cc687e110
2 changed files with 48 additions and 48 deletions
|
@ -1171,8 +1171,8 @@ void CG_AddBeams(void)
|
|||
}
|
||||
|
||||
void CG_CreateBeam(
|
||||
vec3_t start,
|
||||
vec3_t dir,
|
||||
const vec3_t start,
|
||||
const vec3_t dir,
|
||||
int owner,
|
||||
qhandle_t hModel,
|
||||
float alpha,
|
||||
|
@ -1181,7 +1181,7 @@ void CG_CreateBeam(
|
|||
float length,
|
||||
int life,
|
||||
qboolean create,
|
||||
vec3_t endpointvec,
|
||||
const vec3_t endpointvec,
|
||||
int min_offset,
|
||||
int max_offset,
|
||||
int overlap,
|
||||
|
|
|
@ -773,8 +773,8 @@ extern "C" {
|
|||
float scale, int renderfx, const char *beamshadername, byte modulate[4], int flags, int owner, float life
|
||||
);
|
||||
void CG_CreateBeam(
|
||||
vec3_t start,
|
||||
vec3_t dir,
|
||||
const vec3_t start,
|
||||
const vec3_t dir,
|
||||
int owner,
|
||||
qhandle_t hModel,
|
||||
float alpha,
|
||||
|
@ -783,7 +783,7 @@ extern "C" {
|
|||
float length,
|
||||
int life,
|
||||
qboolean create,
|
||||
vec3_t endpointvec,
|
||||
const vec3_t endpointvec,
|
||||
int min_offset,
|
||||
int max_offset,
|
||||
int overlap,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue