mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Fixed "no newline at end of file" warnings issued by GCC 4.2.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@303 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
2
Externals/Bochs_disasm/PowerPCDisasm.cpp
vendored
2
Externals/Bochs_disasm/PowerPCDisasm.cpp
vendored
@ -2244,4 +2244,4 @@ const char *GetGRPName(unsigned int index)
|
|||||||
if (index < 32)
|
if (index < 32)
|
||||||
return gprnames[index];
|
return gprnames[index];
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -106,4 +106,4 @@ public:
|
|||||||
bool failed() {return didFail;}
|
bool failed() {return didFail;}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -149,4 +149,4 @@ void *ProtectFunction(void *function, int num_params)
|
|||||||
|
|
||||||
thunks[function] = call_point;
|
thunks[function] = call_point;
|
||||||
return (void *)call_point;
|
return (void *)call_point;
|
||||||
}
|
}
|
||||||
|
@ -589,4 +589,4 @@ void ExecuteCommand(UDIDMAControlRegister& _DMAControlReg)
|
|||||||
g_ErrorCode = 0x00;
|
g_ErrorCode = 0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
@ -331,4 +331,4 @@ void CWII_IPC_HLE_WiiMote::CommandCofigurationReq(u8 _Ident, u8* _pData, u32 _Si
|
|||||||
|
|
||||||
|
|
||||||
SendCommandToACL(_Ident, L2CAP_CONF_RSP, RespLen, TempBuffer);
|
SendCommandToACL(_Ident, L2CAP_CONF_RSP, RespLen, TempBuffer);
|
||||||
}
|
}
|
||||||
|
@ -334,4 +334,4 @@ void CInterpreter::psq_stux(UGeckoInstruction _inst)
|
|||||||
Helper_Quantize(EA, (float)rPS0(_inst.RS), stType, stScale);
|
Helper_Quantize(EA, (float)rPS0(_inst.RS), stType, stScale);
|
||||||
}
|
}
|
||||||
m_GPR[_inst.RA] = EA;
|
m_GPR[_inst.RA] = EA;
|
||||||
}
|
}
|
||||||
|
@ -33,4 +33,4 @@ void WriteFloatToConstRamAddress(const Gen::X64Reg& xmm_reg, u32 address);
|
|||||||
void ForceSinglePrecisionS(X64Reg xmm);
|
void ForceSinglePrecisionS(X64Reg xmm);
|
||||||
void ForceSinglePrecisionP(X64Reg xmm);
|
void ForceSinglePrecisionP(X64Reg xmm);
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
@ -297,4 +297,4 @@ bool SymbolDB::SaveMap(const char *filename)
|
|||||||
}
|
}
|
||||||
fclose(f);
|
fclose(f);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -53,4 +53,4 @@ void LoadState(const char *filename)
|
|||||||
{
|
{
|
||||||
cur_filename = filename;
|
cur_filename = filename;
|
||||||
CoreTiming::ScheduleEvent_Threadsafe(0, ev_Load);
|
CoreTiming::ScheduleEvent_Threadsafe(0, ev_Load);
|
||||||
}
|
}
|
||||||
|
@ -74,4 +74,4 @@ bool IsWii()
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -21,4 +21,4 @@
|
|||||||
|
|
||||||
//BP state
|
//BP state
|
||||||
// STATE_TO_SAVE
|
// STATE_TO_SAVE
|
||||||
BPMemory bpmem;
|
BPMemory bpmem;
|
||||||
|
@ -19,4 +19,4 @@
|
|||||||
|
|
||||||
// STATE_TO_SAVE
|
// STATE_TO_SAVE
|
||||||
XFRegisters xfregs;
|
XFRegisters xfregs;
|
||||||
u32 xfmem[XFMEM_SIZE];
|
u32 xfmem[XFMEM_SIZE];
|
||||||
|
@ -223,4 +223,4 @@ void RasterFont::printMultilineText(const char *text, double start_x, double sta
|
|||||||
*t=0;
|
*t=0;
|
||||||
printString(temp,x,y,z);
|
printString(temp,x,y,z);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user