Skip to content

Commit

Permalink
Disable warning for bad prefix as it floods in Wipeout Pulse. Cleanups.
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Feb 18, 2013
1 parent e084881 commit f8058e4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Core/MIPS/MIPSIntVFPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ namespace MIPSInt
float scale = V(vt);
if (currentMIPS->vfpuCtrl[VFPU_CTRL_TPREFIX] != 0xE4)
{
WARN_LOG(CPU, "Broken T prefix used with VScl: %08x / %08x", currentMIPS->vfpuCtrl[VFPU_CTRL_TPREFIX], op);
// WARN_LOG(CPU, "Broken T prefix used with VScl: %08x / %08x", currentMIPS->vfpuCtrl[VFPU_CTRL_TPREFIX], op);
ApplySwizzleT(&scale, V_Single);
}
int n = GetNumVectorElements(sz);
Expand Down
4 changes: 2 additions & 2 deletions GPU/GLES/DisplayListInterpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
extern u32 curTextureWidth;
extern u32 curTextureHeight;

static const int flushOnChangedBeforeCommandList[] = {
static const u8 flushOnChangedBeforeCommandList[] = {
GE_CMD_VERTEXTYPE,
GE_CMD_BLENDMODE,
GE_CMD_BLENDFIXEDA,
Expand Down Expand Up @@ -137,7 +137,7 @@ static const int flushOnChangedBeforeCommandList[] = {
GE_CMD_ZBUFWIDTH,
};

static const int flushBeforeCommandList[] = {
static const u8 flushBeforeCommandList[] = {
GE_CMD_BEZIER,
GE_CMD_SPLINE,
GE_CMD_SIGNAL,
Expand Down
2 changes: 1 addition & 1 deletion android/jni/EmuScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void EmuScreen::render()

// We just run the CPU until we get to vblank. This will quickly sync up pretty nicely.
// The actual number of cycles doesn't matter so much here as we will break due to CORE_NEXTFRAME, most of the time hopefully...
int blockTicks = usToCycles(1000000 / 2);
int blockTicks = usToCycles(1000000 / 10);

// Run until CORE_NEXTFRAME
while (coreState == CORE_RUNNING) {
Expand Down
2 changes: 1 addition & 1 deletion native
Submodule native updated 1 files
+1 −3 base/mutex.h

0 comments on commit f8058e4

Please sign in to comment.