summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJules Blok <jules.blok@gmail.com>2014-01-27 21:24:35 +0900
committerJules Blok <jules.blok@gmail.com>2014-01-27 21:24:35 +0900
commit76019848a4dbf459b88ea4560638e3e6d651efbc (patch)
treee7f9db75a8839d69284b302f31737cc40d2b57a8 /Source/Core
parent0eadc2e2a4c4f6d05854c2f2bd2c80ffc9082265 (diff)
Fix coding style
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/GLInterface/AGL.cpp4
-rw-r--r--Source/Core/DolphinWX/GLInterface/AGL.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinWX/GLInterface/AGL.cpp b/Source/Core/DolphinWX/GLInterface/AGL.cpp
index e9ba9f5e12..dd27e68714 100644
--- a/Source/Core/DolphinWX/GLInterface/AGL.cpp
+++ b/Source/Core/DolphinWX/GLInterface/AGL.cpp
@@ -121,8 +121,8 @@ void cInterfaceAGL::Update()
[GLWin.cocoaCtx update];
}
-void cInterfaceAGL::SwapInterval(int Interval)
+void cInterfaceAGL::SwapInterval(int interval)
{
- [GLWin.cocoaCtx setValues:(GLint *)&Interval forParameter:NSOpenGLCPSwapInterval];
+ [GLWin.cocoaCtx setValues:(GLint *)&Interval forParameter:NSOpenGLCPSwapInterval];
}
diff --git a/Source/Core/DolphinWX/GLInterface/AGL.h b/Source/Core/DolphinWX/GLInterface/AGL.h
index 485a29a0b4..cc35f81477 100644
--- a/Source/Core/DolphinWX/GLInterface/AGL.h
+++ b/Source/Core/DolphinWX/GLInterface/AGL.h
@@ -32,7 +32,7 @@ public:
bool ClearCurrent();
void Shutdown();
void Update();
- void SwapInterval(int Interval);
+ void SwapInterval(int interval);
};
#endif