Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 709


Ignore:
Timestamp:
Dec 28, 2007, 10:43:22 PM (16 years ago)
Author:
rgrieder
Message:
  • tardis box wanted to include "windows.h"… —> fixed
Location:
code/branches/FICN
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/bin/levels/sample.oxw

    r658 r709  
    1212
    1313
    14  <audio>
     14 <!--audio>
    1515                <ambient>
    1616                        <ogg src="allgorythm-lift_up" />
     
    2020                        <ogg src="tha_silent_partner_-_void" />
    2121                </ambient>
    22   </audio>
     22  </audio-->
    2323
    2424  <!-- Keep a minimum distance of >100 to the object, otherwise the camara thinks it's in the object -->
     
    3030  <world>
    3131    <Ambient colourvalue="1,1,1" />
    32     <Skybox src="Orxonox/StarfieldSkyBox" />
     32    <Skybox src="Orxonox/StarSkyBox" />
    3333
    3434    <!--Fighter camera="true" position="0,0,0" scale="10" yaw="-90" pitch="-90" mesh="assf3.mesh"  forward="500" rotateupdown="200" rotaterightleft="200" looprightleft="200" /-->
     
    4141    <NPC position="100,0,400" scale="1" mesh="razor.mesh"/>
    4242
    43     <Model position="200,0,500" scale="10" mesh="starship.mesh" yaw="-90" pitch="-90" />
    44     <Model position="-200,0,500" scale="10" mesh="drone.mesh" yaw="-90" pitch="-90" />
     43<!--    <Model position="200,0,500" scale="10" mesh="starship.mesh" yaw="-90" pitch="-90" />
     44    <Model position="-200,0,500" scale="10" mesh="drone.mesh" yaw="-90" pitch="-90" />-->
    4545
    4646    <Model position="-200,1000,500" scale="10" mesh="hoover_body.mesh" yaw="-90" pitch="-90" />
  • code/branches/FICN/src/misc/Sleep.h

    r708 r709  
    11// hack for the usleep/Sleep problem
    2 #if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32
     2#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
    33#  include <windows.h>
    44#  define usleep(x) Sleep((x)/1000)
    5 #elif ORXONOX_PLATFORM == ORXONOX_PLATFORM_LINUX
     5#else
    66#  include <unistd.h>
    77#endif
Note: See TracChangeset for help on using the changeset viewer.