summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWStatistics.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2015-10-09 20:50:36 +0200
committerdegasus <wickmarkus@web.de>2016-01-06 22:10:29 +0100
commitefbe5bc4b651d1f7f726bb064255e0e2562f7490 (patch)
tree6166a471269a9b1eb2bf703a31c915489e428b44 /Source/Core/VideoBackends/Software/SWStatistics.cpp
parent7fcb5a803b2e6179fe57654496fcea7f6b2ff183 (diff)
VideoSW: Use more VideoCommon
Now we require lots of empty functions, but this removes by far more duplicated code.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWStatistics.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWStatistics.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/Source/Core/VideoBackends/Software/SWStatistics.cpp b/Source/Core/VideoBackends/Software/SWStatistics.cpp
deleted file mode 100644
index 44892d6b94..0000000000
--- a/Source/Core/VideoBackends/Software/SWStatistics.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2008 Dolphin Emulator Project
-// Licensed under GPLv2+
-// Refer to the license.txt file included.
-
-#include <cstring>
-#include "VideoBackends/Software/SWStatistics.h"
-
-SWStatistics swstats;
-
-SWStatistics::SWStatistics()
-{
- frameCount = 0;
-}
-
-void SWStatistics::ResetFrame()
-{
- memset(&thisFrame, 0, sizeof(ThisFrame));
-}