mirror of https://github.com/PCSX2/pcsx2.git
I was sure I'd already done this. ELF loading now working in release builds.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3098 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
d03b93bfca
commit
bed2664465
|
@ -499,6 +499,10 @@ irxHLE irxImportHLE(const char libname[8], u16 index)
|
|||
{
|
||||
#ifdef PCSX2_DEVBUILD
|
||||
// debugging output
|
||||
MODULE(sysmem)
|
||||
EXPORT_H( 14, Kprintf)
|
||||
END_MODULE
|
||||
#endif
|
||||
MODULE(ioman)
|
||||
EXPORT_H( 4, open)
|
||||
EXPORT_H( 5, close)
|
||||
|
@ -506,10 +510,6 @@ irxHLE irxImportHLE(const char libname[8], u16 index)
|
|||
EXPORT_H( 7, write)
|
||||
EXPORT_H( 8, lseek)
|
||||
END_MODULE
|
||||
MODULE(sysmem)
|
||||
EXPORT_H( 14, Kprintf)
|
||||
END_MODULE
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue