summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/main.c b/src/main.c
index 0c623ec..3000bef 100644
--- a/src/main.c
+++ b/src/main.c
@@ -13,7 +13,7 @@ static Game *game = NULL;
static void deinit(void);
static int main_loop(void *udata);
-static void acid(const Game *game);
+//static void acid(const Game *game);
int
main(int argc, char **argv)
@@ -87,27 +87,27 @@ main_loop(void *udata)
pxCls(0);
pxPalt(0, true);
game_draw(game);
- acid(game);
+ //acid(game);
pxFlip();
if (TZR_DrawEnd())
return 1;
return 0;
}
-static void
-acid(const Game *game)
-{
- PxCol cols[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
- const int bg = (game->queue_restart_scene != 0);
- for (int i = 0; i < 1024; i++) {
- const int i = !bg + rand() % (7 + bg);
- const int k = !bg + rand() % (7 + bg);
- if (i == k)
- continue;
- cols[i] ^= cols[k];
- cols[k] ^= cols[i];
- cols[i] ^= cols[k];
- }
- for (int i = 0; i < 8; i++)
- pxSpal(i, cols[i]);
-}
+//static void
+//acid(const Game *game)
+//{
+// PxCol cols[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
+// const int bg = (game->queue_restart_scene != 0);
+// for (int i = 0; i < 1024; i++) {
+// const int i = !bg + rand() % (7 + bg);
+// const int k = !bg + rand() % (7 + bg);
+// if (i == k)
+// continue;
+// cols[i] ^= cols[k];
+// cols[k] ^= cols[i];
+// cols[i] ^= cols[k];
+// }
+// for (int i = 0; i < 8; i++)
+// pxSpal(i, cols[i]);
+//}