mirror of https://github.com/stella-emu/stella.git
Remove (u)Int32 vs. (u)Int64 for R77.
This commit is contained in:
parent
37afed9778
commit
6709b43f9c
|
@ -34,13 +34,8 @@ using Int16 = int16_t;
|
|||
using uInt16 = uint16_t;
|
||||
using Int32 = int32_t;
|
||||
using uInt32 = uint32_t;
|
||||
#ifdef RETRON77
|
||||
using Int64 = int32_t;
|
||||
using uInt64 = uint32_t;
|
||||
#else
|
||||
using Int64 = int64_t;
|
||||
using uInt64 = uint64_t;
|
||||
#endif
|
||||
|
||||
// The following code should provide access to the standard C++ objects and
|
||||
// types: cout, cerr, string, ostream, istream, etc.
|
||||
|
|
Loading…
Reference in New Issue