mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Another uninitialized variable (VAI minihash/hash)
This commit is contained in:
parent
ac7ca963db
commit
7884e4ccb3
1 changed files with 2 additions and 2 deletions
|
@ -81,8 +81,8 @@ public:
|
|||
VAI_UNRELIABLE, // never cache
|
||||
};
|
||||
|
||||
uint64_t hash;
|
||||
u32 minihash;
|
||||
uint64_t hash = 0;
|
||||
u32 minihash = 0;
|
||||
|
||||
// These will probably always be the same, but whatever.
|
||||
VkBuffer vb = VK_NULL_HANDLE;
|
||||
|
|
Loading…
Add table
Reference in a new issue