summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/AVIDump.cpp
diff options
context:
space:
mode:
authorChris Burgener <christhecoolist@gmail.com>2016-10-04 09:12:19 -0400
committerChris Burgener <christhecoolist@gmail.com>2016-10-04 09:26:23 -0400
commit43c48a6f486c600fad263a13f0a35dea5d7f67df (patch)
tree52a59845ffeeb7fd1e11c632934521cd4dfb0736 /Source/Core/VideoCommon/AVIDump.cpp
parentea33405febf183058bb30a22f4f627fed4bb8e17 (diff)
Fix frame dumps on file close in certain situations
Diffstat (limited to 'Source/Core/VideoCommon/AVIDump.cpp')
-rw-r--r--Source/Core/VideoCommon/AVIDump.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/AVIDump.cpp b/Source/Core/VideoCommon/AVIDump.cpp
index 8c6c8d6a1b..d31601d545 100644
--- a/Source/Core/VideoCommon/AVIDump.cpp
+++ b/Source/Core/VideoCommon/AVIDump.cpp
@@ -185,7 +185,7 @@ void AVIDump::AddFrame(const u8* data, int width, int height)
{
// Store current frame data in case frame dumping stops before next frame update,
// but make sure that you don't store the last stored frame and check the resolution upon
- // closing the file or else you store recusion, and dolphins don't like recursion.
+ // closing the file or else you store recursion, and dolphins don't like recursion.
if (!s_stop_dumping)
{
StoreFrameData(data, width, height);