mirror of https://github.com/PCSX2/pcsx2.git
gsdx boost queue: init all states
This commit is contained in:
parent
9183d1d2c6
commit
701743a4ec
|
@ -69,7 +69,7 @@ class ringbuffer_base
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ringbuffer_base(void):
|
ringbuffer_base(void):
|
||||||
write_index_(0), read_index_(0)
|
write_index_(0), read_index_(0), pending_pop_read_index(0)
|
||||||
{
|
{
|
||||||
// Use dynamically allocation here with no T object dependency
|
// Use dynamically allocation here with no T object dependency
|
||||||
// Otherwise the ringbuffer_base destructor will call the destructor
|
// Otherwise the ringbuffer_base destructor will call the destructor
|
||||||
|
|
Loading…
Reference in New Issue