From 40a83f8312c32cccc38bfe07f234b8778575cab9 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Sat, 23 Mar 2024 10:10:15 -0400 Subject: [PATCH] Move dev chat commands to pc dir --- Makefile | 2 +- src/pc/chat_commands.c | 2 +- src/{ => pc}/dev/chat.c | 0 src/{ => pc}/dev/chat.h | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename src/{ => pc}/dev/chat.c (100%) rename src/{ => pc}/dev/chat.h (100%) diff --git a/Makefile b/Makefile index ffc0877b..40fbe75e 100644 --- a/Makefile +++ b/Makefile @@ -485,7 +485,7 @@ SRC_DIRS := src src/engine src/game src/audio src/bass_audio src/menu src/buffer BIN_DIRS := bin bin/$(VERSION) # PC files -SRC_DIRS += src/pc src/pc/gfx src/pc/audio src/pc/controller src/pc/fs src/pc/fs/packtypes src/pc/mods src/dev src/pc/network src/pc/network/packets src/pc/network/socket src/pc/network/coopnet src/pc/utils src/pc/utils/miniz src/pc/djui src/pc/lua src/pc/lua/utils src/pc/os +SRC_DIRS += src/pc src/pc/gfx src/pc/audio src/pc/controller src/pc/fs src/pc/fs/packtypes src/pc/mods src/pc/dev src/pc/network src/pc/network/packets src/pc/network/socket src/pc/network/coopnet src/pc/utils src/pc/utils/miniz src/pc/djui src/pc/lua src/pc/lua/utils src/pc/os ifeq ($(DISCORD_SDK),1) SRC_DIRS += src/pc/discord diff --git a/src/pc/chat_commands.c b/src/pc/chat_commands.c index 1d8e087f..40d132b7 100644 --- a/src/pc/chat_commands.c +++ b/src/pc/chat_commands.c @@ -10,7 +10,7 @@ #include "pc/lua/utils/smlua_level_utils.h" #include "level_table.h" #ifdef DEVELOPMENT -#include "dev/chat.h" +#include "pc/dev/chat.h" #endif static enum ChatConfirmCommand sConfirming = CCC_NONE; diff --git a/src/dev/chat.c b/src/pc/dev/chat.c similarity index 100% rename from src/dev/chat.c rename to src/pc/dev/chat.c diff --git a/src/dev/chat.h b/src/pc/dev/chat.h similarity index 100% rename from src/dev/chat.h rename to src/pc/dev/chat.h