We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c3352 commit 4af6cb0Copy full SHA for 4af6cb0
atari_py/ale_interface/src/emucore/TIA.cxx
@@ -34,6 +34,15 @@ using namespace std;
34
35
#define HBLANK 68
36
37
+// c++98 compatibility
38
+#if !defined(__intptr_t_defined) && !defined(_UINTPTR_T_DEFINED) && !defined(uintptr_t)
39
+# if __WORDSIZE == 64
40
+typedef unsigned long int uintptr_t;
41
+# else
42
+typedef unsigned int uintptr_t;
43
+# endif
44
+#endif
45
+
46
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
47
TIA::TIA(const Console& console, Settings& settings)
48
: myConsole(console),
0 commit comments