diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-27 12:27:55 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-27 12:27:55 +0000 |
commit | 08ac48400b9cd669ef80c9ed0f1acf57743d6875 (patch) | |
tree | 6a264e0fba221788b95352161deb27c05bc30e22 /Game | |
parent | dcc4a51e51e003cab0fd58f1e687feb6c649e6f8 (diff) | |
download | usdx-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 '')
-rw-r--r-- | Game/Code/Classes/UCore.pas | 3 |
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;
//-------------
|