Merge branch 'master' of github.com:Fire-Head/re3

# Conflicts:
#	src/control/Replay.h
This commit is contained in:
Fire-Head
2019-06-13 03:40:46 +03:00
17 changed files with 404 additions and 58 deletions

View File

@ -3,7 +3,9 @@
class CReplay
{
public:
static void Display(void);
enum {
MODE_1
};
static uint8 &Mode;
static Bool &bPlayingBackFromFile;

6
src/control/Script.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "common.h"
#include "patcher.h"
#include "Script.h"
uint8 *CTheScripts::ScriptSpace = (uint8*)0x74B248;

7
src/control/Script.h Normal file
View File

@ -0,0 +1,7 @@
#pragma once
class CTheScripts
{
public:
static uint8 *ScriptSpace;//[160*1024]
};