dolphin/Source/Core/Common/Src
2012-04-23 00:50:44 -07:00
..
Crypto
ABI.cpp fix for stack corruption caused by certain DSP LLE JIT ABI calls. 2012-01-07 20:46:41 -08:00
ABI.h
Atomic_GCC.h
Atomic_Win32.h
Atomic.h
BreakPoints.cpp Linux build fix 2012-03-18 23:37:38 +11:00
BreakPoints.h Sped up the Dolphin debugger in JIT mode by splitting a block only while stepping or when it contains a breakpoint. The block is invalidated when a breakpoint is set or cleared. 2012-03-15 21:48:19 +11:00
CDUtils.cpp The data from strdup must be deallocated with free, not delete. I got rid of that ugly strdup and replaced the A though Z cdrom drive letter searching with Windows API stuffs. 2011-03-12 06:50:20 +00:00
CDUtils.h
ChunkFile.h add wstring name(s)/description to the cachefile, use when available in gamelist and properties window 2011-12-18 22:01:46 -08:00
ColorUtil.cpp
ColorUtil.h
Common.h Remove scons-related files 2012-03-25 12:55:02 -07:00
CommonFuncs.h Fix compilation with g++ 4.7 and some warnings. Fixes issue 5347. 2012-04-07 15:45:32 -05:00
CommonPaths.h Modify state.dat before launching wads. Fixes Liight, maybe others. If in doubt, install the wad to the nand. 2012-04-21 16:21:13 +12:00
CommonTypes.h
ConsoleListener.cpp Fixed some memory leaks. Only one was mine ;P 2011-03-22 07:27:23 +00:00
ConsoleListener.h Use mutexes in LogManager to make it threadsafe, as suggested by beistin's patch. Change some LogManager function names to be consistent with Dolphin's naming conventions. 2011-04-01 07:43:02 +00:00
CPUDetect.cpp Fix a crash at startup with Dolphin on Linux compiled in debug mode 2012-01-02 00:59:37 +01:00
CPUDetect.h
DebugInterface.h
ExtendedTrace.cpp
ExtendedTrace.h
FifoQueue.h
FileSearch.cpp
FileSearch.h
FileUtil.cpp Windows: Sets the cwd to the folder that dolphin.exe resides in. 2011-06-11 20:45:09 +00:00
FileUtil.h Windows: Sets the cwd to the folder that dolphin.exe resides in. 2011-06-11 20:45:09 +00:00
FixedSizeQueue.h
Hash.cpp Improvement to revision b8bef29bcc .. :P 2012-02-25 10:59:00 +01:00
Hash.h
IniFile.cpp Add comment here so people know what's up. 2012-02-28 00:27:16 -06:00
IniFile.h
LinearDiskCache.h Revert Rodolfo's recent zcomploc commits until they actually work correctly. 2012-03-30 01:57:53 +02:00
Log.h
LogManager.cpp added an option to log to the attached Windows debugger (so e.g. NOTICE_LOG messages can show up in Visual Studio's output window) 2012-01-07 23:04:18 -08:00
LogManager.h added an option to log to the attached Windows debugger (so e.g. NOTICE_LOG messages can show up in Visual Studio's output window) 2012-01-07 23:04:18 -08:00
MathUtil.cpp some code cleanup i have left in my folder :) 2011-05-25 18:14:29 +00:00
MathUtil.h force VolumeDirectory to align files to 32KB (only streaming audio files really need to be aligned...) 2012-04-23 00:50:44 -07:00
MemArena.cpp
MemArena.h
MemoryUtil.cpp fix Common lib re-linking all the time 2012-03-18 05:47:55 -07:00
MemoryUtil.h
Misc.cpp Hack Misc.cpp into building on OS X. 2011-03-16 22:58:24 +00:00
MsgHandler.cpp Improve the shader UID debugging stuff and merge it to VideoCommon, effectively enabling it in D3D9 and D3D11 as well. 2011-09-09 00:32:04 +02:00
MsgHandler.h Oops. Forgot to add the CriticalAlert definitions for windows. 2011-07-15 16:50:54 +00:00
NandPaths.cpp NAND:Consolidate Wad/Directory loading in CNANDContentLoader to one function 2011-05-09 05:47:29 +00:00
NandPaths.h NAND:Consolidate Wad/Directory loading in CNANDContentLoader to one function 2011-05-09 05:47:29 +00:00
SDCardUtil.cpp
SDCardUtil.h
Setup.h
stdafx.cpp
stdafx.h
StdConditionVariable.h problem: TryAcquireSRWLockExclusive requires Windows 7 :/. solution kinda: use std::recursive_mutex (CriticalSection on windows) where try_lock is used. Dolphin should work on Vista x64 again. 2011-03-07 00:16:38 +00:00
StdMutex.h pthread_mutexattr_t's must be initialized before the type can be set. 2011-03-14 15:06:06 +00:00
StdThread.h enable c++11 compilation in cmakelists 2012-02-24 14:19:24 -06:00
StringUtil.cpp Reset errno to zero before testing it after the strtoul call. Fixes issue 5078. 2011-12-29 12:05:36 +11:00
StringUtil.h
SymbolDB.cpp
SymbolDB.h
SysConf.cpp Fix some minor bugs pointed out by PVS Studio (thanks!) 2012-03-03 20:07:20 +01:00
SysConf.h sysconf SetArayData use the minimum of the buffersize or the dataLength 2012-02-01 00:04:18 -08:00
Thread.cpp Replaced Common::CriticalSection with a std::mutex implementation. 64bit Windows builds now use SRWLocks and ConditionVariables(requires Vista/7, x64 builds will no longer work on Windows XP x64). Tell me if you hate that. Removed Common::EventEx. Common::Event now uses a std::condition_variable impl.(using ConditionVariables on Windows x64, Events on x86, or posix condition variables elsewhere). I experience slight speed improvements with these changes. 2011-03-05 06:11:26 +00:00
Thread.h fixed an issue where the CPU sometimes single-steps an extra time after pausing 2012-01-04 01:33:38 -08:00
Thunk.cpp
Thunk.h
Timer.cpp
Timer.h
Version.cpp fix build issue with intel compiler and fix some unsafe string usages, patch by FilthyMonkey 2011-10-01 21:31:43 -05:00
VideoBackendBase.cpp * GUI Video-Settings changes: 2011-03-21 19:57:31 +00:00
VideoBackendBase.h This release still fixed the hangs produced by fifo overflow without sacrifice performance. 2012-03-05 02:40:10 -03:00
x64Analyzer.cpp
x64Analyzer.h
x64Emitter.cpp Added SHRD/SHLD x86 emitters, further optimized srawx 2012-01-09 00:10:13 -05:00
x64Emitter.h Added SHRD/SHLD x86 emitters, further optimized srawx 2012-01-09 00:10:13 -05:00