From 6672d15d9fd2b47e5fcac242718f9e62af091ce4 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 10 Nov 2022 01:21:18 +0100 Subject: [PATCH] Bring more context to 'eDLL_T' enumerants --- r5dev/tier0/dbg.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/r5dev/tier0/dbg.h b/r5dev/tier0/dbg.h index f50d41b9..aa98c1b9 100644 --- a/r5dev/tier0/dbg.h +++ b/r5dev/tier0/dbg.h @@ -35,15 +35,15 @@ enum class EGlobalContext_t : int enum class eDLL_T : int { - SERVER = 0, // Game DLL - CLIENT = 1, // Game DLL - UI = 2, // Game DLL - ENGINE = 3, // Wrapper - FS = 4, // File System - RTECH = 5, // RTech API - MS = 6, // Material System - NETCON = 7, // Net Console - COMMON = 8 + SERVER = 0, // server.dll (GameDLL) + CLIENT = 1, // client.dll (GameDLL) + UI = 2, // ui.dll (GameDLL) + ENGINE = 3, // engine.dll (Wrapper) + FS = 4, // filesystem_stdio.dll (FileSystem API) + RTECH = 5, // rtech_game.dll (RTech API) + MS = 6, // materialsystem_dx11.dll (MaterialSystem API) + NETCON = 7, // netconsole impl (RCON wire) + COMMON = 8 // general (No specific subsystem) }; static const string sDLL_T[9] =