Merge pull request #2 from create-juicey-app/reapply/dev-on-upstream-202603082259

Reapply/dev on upstream 202603082259
This commit is contained in:
JuiceyDev 2026-03-08 23:28:46 +01:00 committed by GitHub
commit 2eea503835
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 8 additions and 1 deletions

View file

@ -238,6 +238,9 @@ typedef XUID GameSessionUID;
// This is generated at build time via scripts/pack_loc.py
#include "strings.h"
// This is generated at build time via scripts/pack_loc.py
#include "strings.h"
#ifdef _XBOX
#include "../Platform/Xbox/Xbox_App.h"
#include "../Platform/Xbox/Sentient/MinecraftTelemetry.h"

View file

@ -1,5 +1,6 @@
// ts just stink, social manager is a stupid stub rn
#pragma once
#include <winapi_stubs.h>
#ifndef _SOCIAL_MANAGER_H
#define _SOCIAL_MANAGER_H

View file

@ -3606,7 +3606,7 @@ void LevelRenderer::staticCtor()
for(unsigned int i = 0; i < MAX_CHUNK_REBUILD_THREADS; ++i)
{
sprintf(threadName,"Rebuild Chunk Thread %d\n",i);
rebuildThreads[i] = new C4JThread(rebuildChunkThreadProc,(void *)i,threadName);
rebuildThreads[i] = new C4JThread(rebuildChunkThreadProc,(void *)(intptr_t)i,threadName);
s_activationEventA[i] = new C4JThread::Event();

View file

@ -210,6 +210,9 @@ void MemSect(int sect);
// This is generated at build time via scripts/pack_loc.py
#include "strings.h"
// This is generated at build time via scripts/pack_loc.py
#include "strings.h"
#ifdef _XBOX
#include "../../Minecraft.Client/Platform/Xbox/Xbox_App.h"
#include "../../Minecraft.Client/Platform/Xbox/Sentient/SentientTelemetryCommon.h"