fix linker error (radlights is in 2 .cpp files)
This commit is contained in:
parent
8f06fc9c8d
commit
8ca122916d
|
|
@ -46,7 +46,7 @@ using namespace polylib;
|
|||
|
||||
mutex radlights_lock;
|
||||
map<string, qvec3f> texturecolors;
|
||||
std::vector<bouncelight_t> radlights;
|
||||
static std::vector<bouncelight_t> radlights;
|
||||
std::map<int, std::vector<int>> radlightsByFacenum;
|
||||
|
||||
class patch_t {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ using strings = std::vector<std::string>;
|
|||
std::vector<light_t> all_lights;
|
||||
std::vector<sun_t> all_suns;
|
||||
std::vector<entdict_t> entdicts;
|
||||
std::vector<entdict_t> radlights;
|
||||
static std::vector<entdict_t> radlights;
|
||||
|
||||
const std::vector<light_t>& GetLights() {
|
||||
return all_lights;
|
||||
|
|
|
|||
Loading…
Reference in New Issue