another fix for size_t error

This commit is contained in:
Jasper St. Pierre
2023-09-10 22:19:14 -07:00
parent b82520becb
commit 2fcc6eb34d
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -181,7 +181,7 @@ public:
// override unless we give it that. I don't know of an easy way to convince
// IntelliSense that we're in a 32-bit project, so just give it a different size.
#if defined __INTELLISENSE__
typedef unsigned long long NEW_SIZE;
typedef unsigned int NEW_SIZE;
#else
typedef u32 NEW_SIZE;
#endif