From 3bdaa7a921f9199048285e4de1339489ada00494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Wed, 11 Aug 2021 19:43:29 +0200 Subject: [PATCH] code: use 2D renderer by default --- code/game/src/platform_raylib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/src/platform_raylib.c b/code/game/src/platform_raylib.c index febb940..a0f9158 100644 --- a/code/game/src/platform_raylib.c +++ b/code/game/src/platform_raylib.c @@ -18,7 +18,7 @@ static uint16_t screenHeight = 900; static float target_zoom = 1.5f; static bool request_shutdown; -#include "renderer_3d.c" +#include "renderer_v0.c" void platform_init() { InitWindow(screenWidth, screenHeight, "eco2d");