mirror of https://github.com/Chlumsky/msdfgen.git
Fix a typo causing a compile error on Windows
This commit is contained in:
parent
4ed56eb4ca
commit
886740cd81
|
|
@ -24,7 +24,7 @@ struct DynamicLibrary {
|
||||||
: handle(nullptr) {
|
: handle(nullptr) {
|
||||||
for(const auto& name : names) {
|
for(const auto& name : names) {
|
||||||
#if defined(MSDFGEN_WINDOWS)
|
#if defined(MSDFGEN_WINDOWS)
|
||||||
handle = LoadLibraryA(namee.c_str());
|
handle = LoadLibraryA(name.c_str());
|
||||||
#else
|
#else
|
||||||
handle = dlopen(name.c_str(), RTLD_LAZY);
|
handle = dlopen(name.c_str(), RTLD_LAZY);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue