mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-18 02:52:10 +01:00
[dxvk] Fix value type in QueueItem
This was being truncated from uint64_t -> uint32_t then stored in a uint64_t which seems unintentional...
This commit is contained in:
parent
cbbc4a595e
commit
ec6ad90f22
@ -94,7 +94,7 @@ namespace dxvk {
|
||||
|
||||
struct QueueItem {
|
||||
QueueItem() { }
|
||||
QueueItem(uint32_t v, DxvkFenceEvent&& e)
|
||||
QueueItem(uint64_t v, DxvkFenceEvent&& e)
|
||||
: value(v), event(std::move(e)) { }
|
||||
|
||||
uint64_t value;
|
||||
|
Loading…
x
Reference in New Issue
Block a user