Merge pull request #3396 from lioncash/constant

Fifo: Convert define into constant
This commit is contained in:
JosJuice 2015-12-25 22:42:38 +01:00
commit 4ddc04da07
2 changed files with 2 additions and 2 deletions

View File

@ -30,6 +30,8 @@
#include "VideoCommon/VertexManagerBase.h" #include "VideoCommon/VertexManagerBase.h"
#include "VideoCommon/VideoConfig.h" #include "VideoCommon/VideoConfig.h"
static constexpr u32 FIFO_SIZE = 2 * 1024 * 1024;
bool g_bSkipCurrentFrame = false; bool g_bSkipCurrentFrame = false;
static Common::BlockingLoop s_gpu_mainloop; static Common::BlockingLoop s_gpu_mainloop;

View File

@ -9,8 +9,6 @@
class PointerWrap; class PointerWrap;
#define FIFO_SIZE (2*1024*1024)
extern bool g_bSkipCurrentFrame; extern bool g_bSkipCurrentFrame;
// This could be in SConfig, but it depends on multiple settings // This could be in SConfig, but it depends on multiple settings