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:
Maarten ter Huurne
2008-08-24 21:50:41 +00:00
parent 65eb810d63
commit 4871626af8
13 changed files with 13 additions and 13 deletions

View File

@ -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;
} }

View File

@ -106,4 +106,4 @@ public:
bool failed() {return didFail;} bool failed() {return didFail;}
}; };
#endif #endif

View File

@ -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;
} }

View File

@ -589,4 +589,4 @@ void ExecuteCommand(UDIDMAControlRegister& _DMAControlReg)
g_ErrorCode = 0x00; g_ErrorCode = 0x00;
} }
} // namespace } // namespace

View File

@ -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);
} }

View File

@ -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;
} }

View File

@ -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

View File

@ -297,4 +297,4 @@ bool SymbolDB::SaveMap(const char *filename)
} }
fclose(f); fclose(f);
return true; return true;
} }

View File

@ -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);
} }

View File

@ -74,4 +74,4 @@ bool IsWii()
return false; return false;
} }
} }

View File

@ -21,4 +21,4 @@
//BP state //BP state
// STATE_TO_SAVE // STATE_TO_SAVE
BPMemory bpmem; BPMemory bpmem;

View File

@ -19,4 +19,4 @@
// STATE_TO_SAVE // STATE_TO_SAVE
XFRegisters xfregs; XFRegisters xfregs;
u32 xfmem[XFMEM_SIZE]; u32 xfmem[XFMEM_SIZE];

View File

@ -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);
} }
} }