2
0
Эх сурвалжийг харах

Added missing strict statements.

woollybah 5 жил өмнө
parent
commit
4df5080d7c

+ 1 - 0
samples/digesteroids/MathUtil.bmx

@@ -10,6 +10,7 @@
 ' Required:
 '  - Nothing.
 ' *******************************************************************
+Strict
 
 Type MathUtil
 

+ 2 - 2
samples/digesteroids/digesteroids.bmx

@@ -26,7 +26,7 @@ Framework SDL.gl2sdlmax2d
 Import brl.pngloader
 Import brl.wavloader
 Import brl.oggloader
-Import brl.random
+Import brl.Random
 Import sdl.sdlfreeaudio
 
 ' Import various utilities.
@@ -39,7 +39,7 @@ SetAudioDriver("FreeAudio SDL")
 ' Screen settings.
 Const WIDTH       = 1024    ' Width of the screen.
 Const HEIGHT      = 768     ' Height of the screen.
-Const DEPTH       = 32      ' Depth of the screen.
+Const DEPTH       = 0      ' Depth of the screen.
 Const REFRESHRATE = 75      ' How often to update the screen (Per second).
 
 ' Game Settings

+ 1 - 0
samples/digesteroids/dynamicgame.bmx

@@ -30,6 +30,7 @@
 ' Required:
 '  - minitimer.bmx   - Timer framework.
 ' *******************************************************************
+Strict
 
 Import "minitimer.bmx"
 

+ 1 - 0
samples/digesteroids/minitimer.bmx

@@ -20,6 +20,7 @@
 ' Required:
 '  - Nothing.
 ' *******************************************************************
+Strict
 
 Type MiniTimer