Fix compilation with VS2017

This commit is contained in:
Mårten Nordheim 2018-05-12 10:03:01 +02:00 committed by Ivan
parent f0a91484a0
commit b095a0be90

View File

@ -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()
{