Win32 - Reverted acmlm's /dll folder fix.
This commit is contained in:
parent
48a9428abc
commit
6c001a81cb
|
@ -1,4 +1,5 @@
|
||||||
---version 2.0.4 yet to be released---
|
---version 2.0.4 yet to be released---
|
||||||
|
29-mar-2009 - adelikat - Win32 - reverted acmlm's /dll folder change
|
||||||
28-mar-2009 - shinydoofy - sdl - added hotkey Del to toggle mute avi capturing
|
28-mar-2009 - shinydoofy - sdl - added hotkey Del to toggle mute avi capturing
|
||||||
28-mar-2009 - shinydoofy - sdl - fix fm2 playback and fcm->fm2 conversion crash at the cost of ugly 0x00 bytes behind the author's comment line
|
28-mar-2009 - shinydoofy - sdl - fix fm2 playback and fcm->fm2 conversion crash at the cost of ugly 0x00 bytes behind the author's comment line
|
||||||
28-mar-2009 - adelikat - Lua - added FCEU.poweron() and FCEU.softreset()
|
28-mar-2009 - adelikat - Lua - added FCEU.poweron() and FCEU.softreset()
|
||||||
|
|
|
@ -18,7 +18,7 @@ char *FCEUI_GetAboutString() {
|
||||||
Authors:\n\
|
Authors:\n\
|
||||||
zeromus, adelikat, CaH4e3\n\n\
|
zeromus, adelikat, CaH4e3\n\n\
|
||||||
Contributers:\n\
|
Contributers:\n\
|
||||||
DWEdit,QFox\n\
|
Acmlm,DWEdit,QFox\n\
|
||||||
\n\
|
\n\
|
||||||
FCEUX 2.0\n\
|
FCEUX 2.0\n\
|
||||||
mz, nitsujrehtona, Lukas Sabota,\n\
|
mz, nitsujrehtona, Lukas Sabota,\n\
|
||||||
|
|
|
@ -86,7 +86,7 @@
|
||||||
** path of the directory of the executable file of the current process.
|
** path of the directory of the executable file of the current process.
|
||||||
*/
|
*/
|
||||||
#define LUA_LDIR "!\\lua\\"
|
#define LUA_LDIR "!\\lua\\"
|
||||||
#define LUA_CDIR "!\\dll\\"
|
#define LUA_CDIR "!\\"
|
||||||
#define LUA_PATH_DEFAULT \
|
#define LUA_PATH_DEFAULT \
|
||||||
".\\?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?\\init.lua;" \
|
".\\?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?\\init.lua;" \
|
||||||
LUA_CDIR"?.lua;" LUA_CDIR"?\\init.lua"
|
LUA_CDIR"?.lua;" LUA_CDIR"?\\init.lua"
|
||||||
|
|
|
@ -2036,7 +2036,7 @@ int FCEU_LoadLuaCode(const char *filename) {
|
||||||
if (!L) {
|
if (!L) {
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
HMODULE test = LoadLibrary("dll\\lua5.1.dll");
|
HMODULE test = LoadLibrary("lua5.1.dll");
|
||||||
if(!test)
|
if(!test)
|
||||||
{
|
{
|
||||||
FCEUD_PrintError("Couldn't initialize lua system due to failure loading lua5.1.dll");
|
FCEUD_PrintError("Couldn't initialize lua system due to failure loading lua5.1.dll");
|
||||||
|
|
Loading…
Reference in New Issue