Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/rwsdk/rwplcore.h
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,7 @@ struct RwChunkHeaderInfo
{
RwUInt32 type; /**< chunk ID - see \ref RwStreamFindChunk */
RwUInt32 length; /**< length of the chunk data in bytes */
RwUInt32 version; /**< version of the chunk data.
RwUInt32 version; /**< version of the chunk data.
* See \ref RwEngineGetVersion. */
RwUInt32 buildNum; /**< build number of the RenderWare libraries
* previously used to stream out the data */
Expand Down Expand Up @@ -1250,7 +1250,7 @@ struct RwSky2DVertex
extern "C" {
#endif

extern void* RwEngineInstance;
extern RwGlobals* RwEngineInstance;

extern RwStream* _rwStreamWriteVersionedChunkHeader(RwStream* stream, RwInt32 type, RwInt32 size,
RwUInt32 version, RwUInt32 buildNum);
Expand Down
2 changes: 1 addition & 1 deletion src/SB/Core/x/xCutscene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
xCutscene sActiveCutscene;
U32 sCutTocCount;
xCutsceneInfo* sCutTocInfo;
extern void* RwEngineInstance;
extern RwGlobals* RwEngineInstance;
static xModelInstance sCutsceneFakeModel[8];

// Non-matching: scheduling
Expand Down
Loading