diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-10 06:24:16 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-10 06:24:16 +0000 |
commit | 8dc13b99b51555be6fa16d271ddb02d995b46d96 (patch) | |
tree | 83fb595c0ed16c5ffebcfa865eb3112322e66cdd /src/screens | |
parent | d6554ccc1ec223c52f33ff034491e64ac1fa92aa (diff) | |
download | usdx-8dc13b99b51555be6fa16d271ddb02d995b46d96.tar.gz usdx-8dc13b99b51555be6fa16d271ddb02d995b46d96.tar.xz usdx-8dc13b99b51555be6fa16d271ddb02d995b46d96.zip |
FreeBSD compatibility fixes:
- {$IF Defined(Linux)} -> {$IF Defined(Linux) or Defined(BSD)} or {$IF Defined(UNIX)}
- config-freebsd.inc added
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1357 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/screens/UScreenOptionsGraphics.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/UScreenOptionsGraphics.pas b/src/screens/UScreenOptionsGraphics.pas index afee44a9..66c46b0f 100644 --- a/src/screens/UScreenOptionsGraphics.pas +++ b/src/screens/UScreenOptionsGraphics.pas @@ -64,9 +64,9 @@ begin // FIXME: changing the video mode does not work this way in windows // and MacOSX as all textures will be invalidated through this. // See the ALT+TAB code too. - {$IFDEF Linux} + {$IF Defined(Linux) or Defined(BSD)} Reinitialize3D(); - {$ENDIF} + {$IFEND} FadeTo(@ScreenOptions); end; end; |