diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-08-30 12:11:25 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-08-30 12:11:25 +0000 |
| commit | ff0a613427de1533edf2f5b3347a44fd9f242998 (patch) | |
| tree | cf7a6a6184f656e846650a5329c3b80bb542af95 /Source/Core/Common/Src/DynamicLibrary.cpp | |
| parent | 838f37112efafb57a519495161b9d04f3bc9713c (diff) | |
Cleaning up XK's mess, added a simple profiler, minor disasm fix. Too lazy to split it up into individual changes. Savestates not yet working.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@381 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/DynamicLibrary.cpp')
| -rw-r--r-- | Source/Core/Common/Src/DynamicLibrary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/DynamicLibrary.cpp b/Source/Core/Common/Src/DynamicLibrary.cpp index 00096b89b8..c0133576c7 100644 --- a/Source/Core/Common/Src/DynamicLibrary.cpp +++ b/Source/Core/Common/Src/DynamicLibrary.cpp @@ -118,7 +118,7 @@ void* DynamicLibrary::Get(const char* funcname) const retval = GetProcAddress(library, funcname);
//if (!retval)
//{
- //PanicAlert("Did not find function %s in library %s.", funcname, library_file.c_str());
+ // PanicAlert("Did not find function %s in library %s.", funcname, library_file.c_str());
//}
#else
retval = dlsym(library, funcname);
|
