diff options
| author | Maarten ter Huurne <maarten@treewalker.org> | 2008-08-24 21:50:41 +0000 |
|---|---|---|
| committer | Maarten ter Huurne <maarten@treewalker.org> | 2008-08-24 21:50:41 +0000 |
| commit | 4871626af8ced7aeb12e6ddcc87ea0f0cb5822c7 (patch) | |
| tree | 23d810a0e148b93a9e5b36571f77049df3815c45 /Source/Core | |
| parent | 65eb810d6347eec6dca3fe39204564e59a71ff99 (diff) | |
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
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Common/Src/ChunkFile.h | 2 | ||||
| -rw-r--r-- | Source/Core/Common/Src/Thunk.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Core/Src/HW/DVDInterface.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_WiiMote.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_LoadStorePaired.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Core/Src/PowerPC/Jit64/Jit_Util.h | 2 | ||||
| -rw-r--r-- | Source/Core/Core/Src/PowerPC/SymbolDB.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Core/Src/State.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/Core/Src/VolumeHandler.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/Src/BPMemory.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/Src/XFMemory.cpp | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/Source/Core/Common/Src/ChunkFile.h b/Source/Core/Common/Src/ChunkFile.h index 44c7719ada..8d579933f9 100644 --- a/Source/Core/Common/Src/ChunkFile.h +++ b/Source/Core/Common/Src/ChunkFile.h @@ -106,4 +106,4 @@ public: bool failed() {return didFail;}
};
-#endif
\ No newline at end of file +#endif diff --git a/Source/Core/Common/Src/Thunk.cpp b/Source/Core/Common/Src/Thunk.cpp index d2c589c1ae..8dcf6ef35a 100644 --- a/Source/Core/Common/Src/Thunk.cpp +++ b/Source/Core/Common/Src/Thunk.cpp @@ -149,4 +149,4 @@ void *ProtectFunction(void *function, int num_params) thunks[function] = call_point;
return (void *)call_point;
-}
\ No newline at end of file +} diff --git a/Source/Core/Core/Src/HW/DVDInterface.cpp b/Source/Core/Core/Src/HW/DVDInterface.cpp index ae638557fc..ffa3b244f2 100644 --- a/Source/Core/Core/Src/HW/DVDInterface.cpp +++ b/Source/Core/Core/Src/HW/DVDInterface.cpp @@ -589,4 +589,4 @@ void ExecuteCommand(UDIDMAControlRegister& _DMAControlReg) g_ErrorCode = 0x00;
}
-} // namespace
\ No newline at end of file +} // namespace diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_WiiMote.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_WiiMote.cpp index c0e2b1ae79..1bbdb30d90 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_WiiMote.cpp +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_WiiMote.cpp @@ -331,4 +331,4 @@ void CWII_IPC_HLE_WiiMote::CommandCofigurationReq(u8 _Ident, u8* _pData, u32 _Si SendCommandToACL(_Ident, L2CAP_CONF_RSP, RespLen, TempBuffer);
-}
\ No newline at end of file +} diff --git a/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_LoadStorePaired.cpp b/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_LoadStorePaired.cpp index 57cfe46b37..d715f44eea 100644 --- a/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_LoadStorePaired.cpp +++ b/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_LoadStorePaired.cpp @@ -334,4 +334,4 @@ void CInterpreter::psq_stux(UGeckoInstruction _inst) Helper_Quantize(EA, (float)rPS0(_inst.RS), stType, stScale);
}
m_GPR[_inst.RA] = EA;
-}
\ No newline at end of file +} diff --git a/Source/Core/Core/Src/PowerPC/Jit64/Jit_Util.h b/Source/Core/Core/Src/PowerPC/Jit64/Jit_Util.h index 1fb0f1de18..731812e811 100644 --- a/Source/Core/Core/Src/PowerPC/Jit64/Jit_Util.h +++ b/Source/Core/Core/Src/PowerPC/Jit64/Jit_Util.h @@ -33,4 +33,4 @@ void WriteFloatToConstRamAddress(const Gen::X64Reg& xmm_reg, u32 address); void ForceSinglePrecisionS(X64Reg xmm);
void ForceSinglePrecisionP(X64Reg xmm);
-} // namespace
\ No newline at end of file +} // namespace diff --git a/Source/Core/Core/Src/PowerPC/SymbolDB.cpp b/Source/Core/Core/Src/PowerPC/SymbolDB.cpp index 68be69317f..6e1341d212 100644 --- a/Source/Core/Core/Src/PowerPC/SymbolDB.cpp +++ b/Source/Core/Core/Src/PowerPC/SymbolDB.cpp @@ -297,4 +297,4 @@ bool SymbolDB::SaveMap(const char *filename) }
fclose(f);
return true;
-}
\ No newline at end of file +} diff --git a/Source/Core/Core/Src/State.cpp b/Source/Core/Core/Src/State.cpp index b862b317da..09fd6364e6 100644 --- a/Source/Core/Core/Src/State.cpp +++ b/Source/Core/Core/Src/State.cpp @@ -53,4 +53,4 @@ void LoadState(const char *filename) {
cur_filename = filename;
CoreTiming::ScheduleEvent_Threadsafe(0, ev_Load);
-}
\ No newline at end of file +} diff --git a/Source/Core/Core/Src/VolumeHandler.cpp b/Source/Core/Core/Src/VolumeHandler.cpp index d30387412a..1db86ae2cf 100644 --- a/Source/Core/Core/Src/VolumeHandler.cpp +++ b/Source/Core/Core/Src/VolumeHandler.cpp @@ -74,4 +74,4 @@ bool IsWii() return false;
}
-}
\ No newline at end of file +} diff --git a/Source/Core/VideoCommon/Src/BPMemory.cpp b/Source/Core/VideoCommon/Src/BPMemory.cpp index a4d92de477..da7083da4c 100644 --- a/Source/Core/VideoCommon/Src/BPMemory.cpp +++ b/Source/Core/VideoCommon/Src/BPMemory.cpp @@ -21,4 +21,4 @@ //BP state
// STATE_TO_SAVE
-BPMemory bpmem;
\ No newline at end of file +BPMemory bpmem; diff --git a/Source/Core/VideoCommon/Src/XFMemory.cpp b/Source/Core/VideoCommon/Src/XFMemory.cpp index 925e400dfc..3641d9f65c 100644 --- a/Source/Core/VideoCommon/Src/XFMemory.cpp +++ b/Source/Core/VideoCommon/Src/XFMemory.cpp @@ -19,4 +19,4 @@ // STATE_TO_SAVE
XFRegisters xfregs;
-u32 xfmem[XFMEM_SIZE];
\ No newline at end of file +u32 xfmem[XFMEM_SIZE]; |
