mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 23:17:29 +00:00
Fix compilation with VS2017
This commit is contained in:
parent
f0a91484a0
commit
b095a0be90
@ -966,10 +966,10 @@ struct ppu_acontext
|
||||
// Integral range: normalized undef = (0;UINT64_MAX), unnormalized undefs are possible (when max = min - 1)
|
||||
// Bit range: constant 0 = (0;0), constant 1 = (1;1), normalized undef = (0;1), unnormalized undef = (1;0)
|
||||
|
||||
u64 imin = 0; // Integral range begin
|
||||
u64 imax = -1; // Integral range end
|
||||
u64 bmin = 0; // Bit range begin
|
||||
u64 bmax = -1; // Bit range end
|
||||
u64 imin = 0ull; // Integral range begin
|
||||
u64 imax = -1ull; // Integral range end
|
||||
u64 bmin = 0ull; // Bit range begin
|
||||
u64 bmax = -1ull; // Bit range end
|
||||
|
||||
void set_undef()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user