rnd-20091012-1-src
[rocksndiamonds.git] / src / game_sp / main.c
index 702cb7d36e0367a7752df1e4b56cf5b4b3c304c7..3139a0206ef16793b1cc9ee1b048e131a0ee488c 100644 (file)
@@ -3,10 +3,14 @@
 #include "global.h"
 
 
+struct GameInfo_SP game_sp_info;
 struct LevelInfo_SP native_sp_level;
 
 void InitGameEngine_SP()
 {
+  game_sp_info.LevelSolved = FALSE;
+  game_sp_info.GameOver = FALSE;
+
 #if 0
   menPlay_Click();
 #else
@@ -22,4 +26,5 @@ void BlitScreenToBitmap_SP(Bitmap *target_bitmap)
 
 void GameActions_SP(byte action[MAX_PLAYERS], boolean warp_mode)
 {
+  subMainGameLoop_Main();
 }