Update the license file text (change SVN to Git) in all projects except Core since I was told a merge was happening soon. So for the sake of the merge going smoothly, I'll fix that when I remove the tab/space mismatches from the Core project.

Also, some tab/space mismatches removed from VideoOGL, and some places I missed in VideoDX[number] projects.

Now, the Core is literally the only project with tab/space mismatches (on a large scale).
This commit is contained in:
lioncash
2013-04-15 16:28:55 -04:00
parent a44fb7bdd0
commit ef85b9af45
314 changed files with 533 additions and 531 deletions

View File

@ -12,7 +12,7 @@
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official SVN repository and contact information can be found at
// Official Git repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/
#include "x64Analyzer.h"
@ -33,7 +33,7 @@ bool DisassembleMov(const unsigned char *codePtr, InstructionInfo &info, int acc
u8 modRMbyte = 0;
u8 sibByte = 0;
bool hasModRM = false;
bool hasModRM = false;
int displacementSize = 0;
@ -63,10 +63,10 @@ bool DisassembleMov(const unsigned char *codePtr, InstructionInfo &info, int acc
// Skip two-byte opcode byte
bool twoByte = false;
if(codeByte == 0x0F)
{
{
twoByte = true;
codeByte2 = *codePtr++;
}
}
if (!twoByte)
{