Skip to content
Open
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
2 changes: 1 addition & 1 deletion Core/Libraries/Source/WWVegas/WWSaveLoad/definition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#include "definition.h"
#include "chunkio.h"
#include "WWLib/chunkio.h"

//////////////////////////////////////////////////////////////////////////////////
// Constants
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

#include "definitionfactorymgr.h"
#include "definitionfactory.h"
#include "wwdebug.h"
#include "WWDebug/wwdebug.h"

#ifdef _UNIX
#include "osdep.h"
Expand Down
8 changes: 4 additions & 4 deletions Core/Libraries/Source/WWVegas/WWSaveLoad/definitionmgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
#include "definitionfactory.h"
#include "definitionfactorymgr.h"
#include "definitionclassids.h"
#include "chunkio.h"
#include "WWLib/chunkio.h"
#include "persistfactory.h"
#include "wwdebug.h"
#include "wwmemlog.h"
#include "WWDebug/wwdebug.h"
#include "WWDebug/wwmemlog.h"
#include "twiddler.h"
#include "wwprofile.h"
#include "WWDebug/wwprofile.h"


//////////////////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion Core/Libraries/Source/WWVegas/WWSaveLoad/parameter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#include "parameter.h"
#include "parametertypes.h"
#include "simpleparameter.h"
#include "wwstring.h"
#include "WWLib/wwstring.h"
#include "definitionclassids.h"


Expand Down
2 changes: 1 addition & 1 deletion Core/Libraries/Source/WWVegas/WWSaveLoad/pointerremap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@


#include "pointerremap.h"
#include "wwdebug.h"
#include "WWDebug/wwdebug.h"


const int POINTER_TABLES_GROWTH_STEP = 4096;
Expand Down
10 changes: 5 additions & 5 deletions Core/Libraries/Source/WWVegas/WWSaveLoad/saveload.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
#include "saveloadsubsystem.h"
#include "persist.h"
#include "persistfactory.h"
#include "chunkio.h"
#include "wwdebug.h"
#include "WWLib/chunkio.h"
#include "WWDebug/wwdebug.h"
#include "saveloadstatus.h"
#include "wwhack.h"
#include "wwprofile.h"
#include "WWDebug/wwhack.h"
#include "WWDebug/wwprofile.h"

#pragma warning(disable:4201) // warning C4201: nonstandard extension used : nameless struct/union
#include <windows.h>
#include "systimer.h"
#include "WWLib/systimer.h"


SaveLoadSubSystemClass * SaveLoadSystemClass::SubSystemListHead = nullptr;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

#include "saveloadstatus.h"
#include "mutex.h"
#include "WWLib/mutex.h"

#define MAX_STATUS_TEXT_ID 2

Expand Down
8 changes: 4 additions & 4 deletions Core/Libraries/Source/WWVegas/WWSaveLoad/twiddler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@


#include "twiddler.h"
#include "RANDOM.h"
#include "WWLib/RANDOM.h"
#include "saveloadids.h"
#include "simpledefinitionfactory.h"
#include "persistfactory.h"
#include "win.h"
#include "wwhack.h"
#include "systimer.h"
#include "WWLib/win.h"
#include "WWDebug/wwhack.h"
#include "WWLib/systimer.h"


DECLARE_FORCE_LINK( Twiddler )
Expand Down
2 changes: 1 addition & 1 deletion Core/Libraries/Source/WWVegas/WWStub/wwallocstub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// TheSuperHackers @build feliwir 15/04/2025 Simple allocator implementation useful for tools

#include "always.h"
#include "WWLib/always.h"
#include <stdlib.h>

#ifdef _OPERATOR_NEW_DEFINED_
Expand Down
2 changes: 1 addition & 1 deletion Core/Libraries/Source/WWVegas/WWStub/wwdebugstub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// TheSuperHackers @build feliwir 15/04/2025 Simple debug implementation useful for tools

#include "wwdebug.h"
#include "WWDebug/wwdebug.h"
#include <stdarg.h>
#include <stdlib.h>
#include <Utility/stdio_adapter.h>
Expand Down
Loading