diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-10-27 09:36:49 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-10-27 09:36:49 +0000 |
commit | 5802c7be05f25e5da3a991377942c00ee7d95639 (patch) | |
tree | 3b5e5bc3fbfb500a0617aa9f13593454977539e1 | |
parent | 9af5260cd9905f8d7e5600110cdb0667c0bb5188 (diff) | |
download | usdx-5802c7be05f25e5da3a991377942c00ee7d95639.tar.gz usdx-5802c7be05f25e5da3a991377942c00ee7d95639.tar.xz usdx-5802c7be05f25e5da3a991377942c00ee7d95639.zip |
try to fix build errors
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@537 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | Game/Code/Classes/UCore.pas | 2 | ||||
-rw-r--r-- | Game/Code/Classes/UModules.pas | 2 | ||||
-rw-r--r-- | Game/Code/Classes/uPluginLoader.pas | 4 | ||||
-rw-r--r-- | Game/Code/UltraStar.dpr | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Game/Code/Classes/UCore.pas b/Game/Code/Classes/UCore.pas index a8a29aeb..9c31e79a 100644 --- a/Game/Code/Classes/UCore.pas +++ b/Game/Code/Classes/UCore.pas @@ -1,7 +1,7 @@ unit UCore;
interface
-uses uPluginDefs, uCoreModule, UHooks, UServices, uModules;
+uses uPluginDefs, uCoreModule, UHooks, UServices, UModules;
{*********************
TCore
Class manages all CoreModules, teh StartUp, teh MainLoop and the shutdown process
diff --git a/Game/Code/Classes/UModules.pas b/Game/Code/Classes/UModules.pas index c126e9ee..493fc393 100644 --- a/Game/Code/Classes/UModules.pas +++ b/Game/Code/Classes/UModules.pas @@ -9,7 +9,7 @@ interface uses
UCoreModule,
- uPluginLoader;
+ UPluginLoader;
const
CORE_MODULES_TO_LOAD: Array[0..2] of cCoreModule = (
diff --git a/Game/Code/Classes/uPluginLoader.pas b/Game/Code/Classes/uPluginLoader.pas index fadea0c6..442e76e0 100644 --- a/Game/Code/Classes/uPluginLoader.pas +++ b/Game/Code/Classes/uPluginLoader.pas @@ -1,6 +1,6 @@ -unit uPluginLoader;
+unit UPluginLoader;
{*********************
- uPluginLoader
+ UPluginLoader
Unit contains to Classes
TPluginLoader: Class Searching for and Loading the Plugins
TtehPlugins: Class that represents the Plugins in Modules chain
diff --git a/Game/Code/UltraStar.dpr b/Game/Code/UltraStar.dpr index 0b7e8449..81596deb 100644 --- a/Game/Code/UltraStar.dpr +++ b/Game/Code/UltraStar.dpr @@ -93,7 +93,7 @@ uses UCore in 'Classes\UCore.pas', //Core, Maybe remove this
UCoreModule in 'Classes\UCoreModule.pas', //^
UPluginInterface in 'Classes\UPluginInterface.pas', //Interface offered by Core to Plugins
- uPluginLoader in 'Classes\uPluginLoader.pas', //New Plugin Loader Module
+ UPluginLoader in 'Classes\UPluginLoader.pas', //New Plugin Loader Module
UParty in 'Classes\UParty.pas', // to - do : rewrite Party Manager as Module, reomplent ability to offer party Mody by Plugin
|