aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/InputStream.h
diff options
context:
space:
mode:
authorvoid_17 <61356189+void2012@users.noreply.github.com>2026-03-07 03:31:30 +0700
committerGitHub <noreply@github.com>2026-03-07 03:31:30 +0700
commit988e3042e00485aa7ed3725fe7bfde1da8cf8519 (patch)
treecf712d80b4d03eec73f935e0cce23020ddb6f5ef /Minecraft.World/InputStream.h
parent175fc3824e502ecd701c1da2ecd2061d77495693 (diff)
Remove all MSVC `__int64` (#742)
Diffstat (limited to 'Minecraft.World/InputStream.h')
-rw-r--r--Minecraft.World/InputStream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/InputStream.h b/Minecraft.World/InputStream.h
index af0ff593..234e85b5 100644
--- a/Minecraft.World/InputStream.h
+++ b/Minecraft.World/InputStream.h
@@ -11,7 +11,7 @@ public:
virtual int read(byteArray b) = 0;
virtual int read(byteArray b, unsigned int offset, unsigned int length) = 0;
virtual void close() = 0;
- virtual __int64 skip(__int64 n) = 0;
+ virtual int64_t skip(int64_t n) = 0;
static InputStream *getResourceAsStream(const wstring &fileName);
}; \ No newline at end of file