mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Merge pull request #3396 from lioncash/constant
Fifo: Convert define into constant
This commit is contained in:
commit
4ddc04da07
2 changed files with 2 additions and 2 deletions
|
@ -30,6 +30,8 @@
|
|||
#include "VideoCommon/VertexManagerBase.h"
|
||||
#include "VideoCommon/VideoConfig.h"
|
||||
|
||||
static constexpr u32 FIFO_SIZE = 2 * 1024 * 1024;
|
||||
|
||||
bool g_bSkipCurrentFrame = false;
|
||||
|
||||
static Common::BlockingLoop s_gpu_mainloop;
|
||||
|
|
|
@ -9,8 +9,6 @@
|
|||
|
||||
class PointerWrap;
|
||||
|
||||
#define FIFO_SIZE (2*1024*1024)
|
||||
|
||||
extern bool g_bSkipCurrentFrame;
|
||||
|
||||
// This could be in SConfig, but it depends on multiple settings
|
||||
|
|
Loading…
Add table
Reference in a new issue