summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-09-11 13:00:40 -0400
committerLioncash <mathew1800@gmail.com>2014-09-11 13:05:31 -0400
commitb06ec302d1051843228464656d3021aeec45eb07 (patch)
tree34a42b3bd004189822b142782f21d9e008f47fc9 /Source/Core/VideoCommon
parentc6f3424ab1c192a9d6e8e6c2e1f8335bc38344a8 (diff)
Remove some unnecessary semicolons
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/BPFunctions.h2
-rw-r--r--Source/Core/VideoCommon/Debugger.h4
-rw-r--r--Source/Core/VideoCommon/HiresTextures.h2
-rw-r--r--Source/Core/VideoCommon/VertexLoaderManager.h2
-rw-r--r--Source/Core/VideoCommon/VertexManagerBase.h4
5 files changed, 7 insertions, 7 deletions
diff --git a/Source/Core/VideoCommon/BPFunctions.h b/Source/Core/VideoCommon/BPFunctions.h
index 4a3b25c9de..ff7e928f8a 100644
--- a/Source/Core/VideoCommon/BPFunctions.h
+++ b/Source/Core/VideoCommon/BPFunctions.h
@@ -30,4 +30,4 @@ void CopyEFB(u32 dstAddr, const EFBRectangle& srcRect,
void ClearScreen(const EFBRectangle &rc);
void OnPixelFormatChange();
void SetInterlacingMode(const BPCmd &bp);
-};
+}
diff --git a/Source/Core/VideoCommon/Debugger.h b/Source/Core/VideoCommon/Debugger.h
index 894921c744..e7f864652a 100644
--- a/Source/Core/VideoCommon/Debugger.h
+++ b/Source/Core/VideoCommon/Debugger.h
@@ -12,8 +12,8 @@ public:
virtual ~GFXDebuggerBase() {}
// if paused, debugging functions can be enabled
- virtual void OnPause() {};
- virtual void OnContinue() {};
+ virtual void OnPause() {}
+ virtual void OnContinue() {}
void DumpPixelShader(const std::string& path);
void DumpVertexShader(const std::string& path);
diff --git a/Source/Core/VideoCommon/HiresTextures.h b/Source/Core/VideoCommon/HiresTextures.h
index 78b9b14e74..5df71f0fa7 100644
--- a/Source/Core/VideoCommon/HiresTextures.h
+++ b/Source/Core/VideoCommon/HiresTextures.h
@@ -15,4 +15,4 @@ void Init(const std::string& gameCode);
bool HiresTexExists(const std::string& filename);
PC_TexFormat GetHiresTex(const std::string& fileName, unsigned int* pWidth, unsigned int* pHeight, unsigned int* required_size, int texformat, unsigned int data_size, u8* data);
-};
+}
diff --git a/Source/Core/VideoCommon/VertexLoaderManager.h b/Source/Core/VideoCommon/VertexLoaderManager.h
index 4177140da8..32a64b6cd8 100644
--- a/Source/Core/VideoCommon/VertexLoaderManager.h
+++ b/Source/Core/VideoCommon/VertexLoaderManager.h
@@ -24,6 +24,6 @@ namespace VertexLoaderManager
void AppendListToString(std::string *dest);
NativeVertexFormat* GetCurrentVertexFormat();
-};
+}
void RecomputeCachedArraybases();
diff --git a/Source/Core/VideoCommon/VertexManagerBase.h b/Source/Core/VideoCommon/VertexManagerBase.h
index c9ee61b777..7852e61f34 100644
--- a/Source/Core/VideoCommon/VertexManagerBase.h
+++ b/Source/Core/VideoCommon/VertexManagerBase.h
@@ -43,8 +43,8 @@ public:
virtual ::NativeVertexFormat* CreateNativeVertexFormat() = 0;
static void DoState(PointerWrap& p);
- virtual void CreateDeviceObjects(){};
- virtual void DestroyDeviceObjects(){};
+ virtual void CreateDeviceObjects(){}
+ virtual void DestroyDeviceObjects(){}
protected:
virtual void vDoState(PointerWrap& p) { }