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) {
|
||||
for(const auto& name : names) {
|
||||
#if defined(MSDFGEN_WINDOWS)
|
||||
handle = LoadLibraryA(namee.c_str());
|
||||
handle = LoadLibraryA(name.c_str());
|
||||
#else
|
||||
handle = dlopen(name.c_str(), RTLD_LAZY);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue