Skip to content

Commit

Permalink
Fixed strings
Browse files Browse the repository at this point in the history
Fixed strings
  • Loading branch information
SmileYzn committed Dec 18, 2024
1 parent 48066c0 commit 6b45988
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MatchBot/MatchAdmin.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

// Admin settings file
char MB_ADMIN_LIST_FILE[] = "cstrike/addons/matchbot/users.txt";
#define MB_ADMIN_LIST_FILE "cstrike/addons/matchbot/users.txt"

// Admin struct info
typedef struct S_ADMIN_INFO
Expand Down
2 changes: 1 addition & 1 deletion MatchBot/MatchCommand.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

// Default commands file
char MB_COMMANDS_FILE[] = "cstrike/addons/matchbot/commands.txt";
#define MB_COMMANDS_FILE "cstrike/addons/matchbot/commands.txt"

// Command info
typedef struct S_COMMAND_INFO
Expand Down
2 changes: 1 addition & 1 deletion MatchBot/MatchCvarMenu.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

// Default cvar menu file
char MB_CVAR_MENU_FILE[] = "cstrike/addons/matchbot/cvars.txt";
#define MB_CVAR_MENU_FILE "cstrike/addons/matchbot/cvars.txt"

typedef struct S_CVAR_MENU_INFO
{
Expand Down
2 changes: 1 addition & 1 deletion MatchBot/MatchLanguage.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define _T(TextString) gMatchLanguage.Get(TextString)

// Default language file
char MB_LANGUAGE_FILE[] = "cstrike/addons/matchbot/language.txt";
#define MB_LANGUAGE_FILE "cstrike/addons/matchbot/language.txt"

class CMatchLanguage
{
Expand Down
2 changes: 1 addition & 1 deletion MatchBot/MatchUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ constexpr auto PRINT_CENTER = 4;
constexpr auto PRINT_RADIO = 5;

// Map List File
char MB_MAP_LIST_FILE[] = "cstrike/addons/matchbot/maplist.txt";
#define MB_MAP_LIST_FILE "cstrike/addons/matchbot/maplist.txt"

class CMatchUtil
{
Expand Down

0 comments on commit 6b45988

Please sign in to comment.