then, we should get rid of the check for the lua dll

This commit is contained in:
zeromus 2009-10-31 14:08:06 +00:00
parent 10aa7e32d8
commit 6b2a3afe7f
1 changed files with 0 additions and 10 deletions

View File

@ -4401,16 +4401,6 @@ int FCEU_LoadLuaCode(const char *filename) {
if (!L) {
#ifdef WIN32
HMODULE test = LoadLibrary("lua5.1.dll");
if(!test)
{
FCEUD_PrintError("Couldn't initialize lua system due to failure loading lua5.1.dll");
return 0;
}
FreeLibrary(test);
#endif
L = lua_open();
luaL_openlibs(L);