mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-23 10:56:14 +00:00
refactor: nuke __int64/__uint64 in Minecraft.World
This commit is contained in:
@@ -95,7 +95,7 @@ void ByteArrayInputStream::close() { return; }
|
||||
// pos and k is returned. Overrides: skip in class InputStream Parameters: n -
|
||||
// the number of bytes to be skipped. Returns: the actual number of bytes
|
||||
// skipped.
|
||||
__int64 ByteArrayInputStream::skip(__int64 n) {
|
||||
int64_t ByteArrayInputStream::skip(int64_t n) {
|
||||
int newPos = pos + n;
|
||||
|
||||
if (newPos > count) newPos = count;
|
||||
|
||||
Reference in New Issue
Block a user