aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-12-27 12:27:55 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-12-27 12:27:55 +0000
commit08ac48400b9cd669ef80c9ed0f1acf57743d6875 (patch)
tree6a264e0fba221788b95352161deb27c05bc30e22 /Game/Code/Classes
parentdcc4a51e51e003cab0fd58f1e687feb6c649e6f8 (diff)
downloadusdx-08ac48400b9cd669ef80c9ed0f1acf57743d6875.tar.gz
usdx-08ac48400b9cd669ef80c9ed0f1acf57743d6875.tar.xz
usdx-08ac48400b9cd669ef80c9ed0f1acf57743d6875.zip
Added missing return-values (always true) to InitCore and LoadCore.
Whiteshark: Please change this to the appropriate values. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@749 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes')
-rw-r--r--Game/Code/Classes/UCore.pas3
1 files changed, 3 insertions, 0 deletions
diff --git a/Game/Code/Classes/UCore.pas b/Game/Code/Classes/UCore.pas
index c150ff34..9718b2eb 100644
--- a/Game/Code/Classes/UCore.pas
+++ b/Game/Code/Classes/UCore.pas
@@ -376,6 +376,8 @@ begin
//A little Test
Hooks.AddSubscriber('Core/NewError', HookTest);
+
+ result := true;
end;
//-------------
@@ -384,6 +386,7 @@ end;
Function TCore.InitCore: Boolean;
begin
//Dont Init s.th. atm.
+ result := true;
end;
//-------------