fixed libresman renamed resman_lookup to resman_add master
authorJohn Tsiombikas <nuclear@member.fsf.org>
Fri, 9 Oct 2020 21:49:55 +0000 (00:49 +0300)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Fri, 9 Oct 2020 21:49:55 +0000 (00:49 +0300)
src/gear.h
src/texture.cc

index fac245c..5f99dd5 100644 (file)
@@ -52,7 +52,7 @@ public:
         */
        std::string name;
        Vec3 pos, axis; // implicitly defines a plane eqn.
-       float pdist;    // derived: distance of plane from origin
+       float pdist;    // derived from the above: distance of plane from origin
 
        float init_angle;       // initial starting angle
        float angle;    // current angle of the gear
index a787abd..da14721 100644 (file)
@@ -463,7 +463,7 @@ Texture *TextureSet::get_texture(const char *name, TextureType type) const
 
        Texture *res = create();
        res->create_default(type);
-       resman_lookup(rman, name, res);
+       resman_add(rman, name, res);
        return res;
 }