From 68535f7b83629a536c17fd06de522083d2facfff Mon Sep 17 00:00:00 2001 From: nesbox Date: Mon, 17 Sep 2018 00:36:00 +0300 Subject: [PATCH] compilation warning fixes --- src/fs.h | 2 -- src/tic.h | 6 +++--- src/world.h | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/fs.h b/src/fs.h index d55e5a8..cf6a7de 100644 --- a/src/fs.h +++ b/src/fs.h @@ -25,8 +25,6 @@ #include #include -typedef struct FileSystem FileSystem; - typedef enum { FS_FILE_NOT_ADDED, diff --git a/src/tic.h b/src/tic.h index c9c21be..cb33c19 100644 --- a/src/tic.h +++ b/src/tic.h @@ -27,9 +27,9 @@ #include "defines.h" #define TIC_VERSION_MAJOR 0 -#define TIC_VERSION_MINOR 70 -#define TIC_VERSION_PATCH 6 -#define TIC_VERSION_STATUS "" +#define TIC_VERSION_MINOR 80 +#define TIC_VERSION_PATCH 0 +#define TIC_VERSION_STATUS "-dev" #if defined(TIC80_PRO) #define TIC_VERSION_POST " Pro" diff --git a/src/world.h b/src/world.h index 50d5c9f..53df0fc 100644 --- a/src/world.h +++ b/src/world.h @@ -23,8 +23,8 @@ #pragma once #include "studio.h" +#include "map.h" -typedef struct Map Map; typedef struct World World; struct World