From cbd567c4cb43b21e6fde19522dae1e7d24972c37 Mon Sep 17 00:00:00 2001 From: veclavtalica Date: Mon, 29 Jul 2024 12:53:03 +0300 Subject: [PATCH] move and rename private/textures.h to textures/internal_api.h --- src/textures.c | 2 +- src/textures.h | 2 +- src/{private/textures.h => textures/internal_api.h} | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename src/{private/textures.h => textures/internal_api.h} (93%) diff --git a/src/textures.c b/src/textures.c index 7bd9a4e..8289592 100644 --- a/src/textures.c +++ b/src/textures.c @@ -1,4 +1,4 @@ -#include "private/textures.h" +#include "textures/internal_api.h" #include "config.h" #include "util.h" #include "textures.h" diff --git a/src/textures.h b/src/textures.h index ac275a6..b5b0d73 100644 --- a/src/textures.h +++ b/src/textures.h @@ -1,7 +1,7 @@ #ifndef TEXTURES_H #define TEXTURES_H -#include "private/textures.h" +#include "textures/internal_api.h" #include "textures/modes.h" #include "util.h" diff --git a/src/private/textures.h b/src/textures/internal_api.h similarity index 93% rename from src/private/textures.h rename to src/textures/internal_api.h index dace5e7..e9c06c2 100644 --- a/src/private/textures.h +++ b/src/textures/internal_api.h @@ -1,5 +1,5 @@ -#ifndef PRIVATE_TEXTURES_H -#define PRIVATE_TEXTURES_H +#ifndef TEXTURES_INTERNAL_API_H +#define TEXTURES_INTERNAL_API_H #include "../util.h" #include "../textures/modes.h"