diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-04-30 12:54:51 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-04-30 12:54:51 +0000 |
commit | 731dec0d29e29a5d30e728616bcb5aa35c7c75ea (patch) | |
tree | 9f404dead6fc684b24a031ec8a1466a6b22adb9b /Modis | |
parent | 019d57a35441572024cd478da08a67149a1c865f (diff) | |
download | usdx-731dec0d29e29a5d30e728616bcb5aa35c7c75ea.tar.gz usdx-731dec0d29e29a5d30e728616bcb5aa35c7c75ea.tar.xz usdx-731dec0d29e29a5d30e728616bcb5aa35c7c75ea.zip |
Fixed some range-check errors. Explicitly disable range-checks {$R-} should not be necessary for the MacOSX build anymore.
Note: Texture-numbers (e.g. texnum) are unsigned (GLuint) so do not init them to -1. Use 0 instead.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1040 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Modis/SDK/UPluginDefs.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modis/SDK/UPluginDefs.pas b/Modis/SDK/UPluginDefs.pas index 68b35446..1075015a 100644 --- a/Modis/SDK/UPluginDefs.pas +++ b/Modis/SDK/UPluginDefs.pas @@ -154,7 +154,7 @@ type //----------------
const
{Returned if Service is not found from CallService}
- SERVICE_NOT_FOUND=$80000000;
+ SERVICE_NOT_FOUND = LongInt($80000000);
//for use in Service 'Core/ShowMessage' lParam(Symbol)
CORE_SM_NOSYMBOL= 0;
|