mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-03 01:22:53 +00:00
Merge pull request #2 from create-juicey-app/reapply/dev-on-upstream-202603082259
Reapply/dev on upstream 202603082259
This commit is contained in:
commit
2eea503835
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue