Skip to content

Commit bbd9bed

Browse files
committed
Fixed indention
1 parent 4415513 commit bbd9bed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/core/core/sp_gamedir.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ bool CGamePaths::Initialize( void )
5555
}
5656

5757
engine->GetGameDir(m_szGameDir, MAX_GAME_PATH);
58-
GenerateSymlink(m_szGameDir);
58+
GenerateSymlink(m_szGameDir);
5959
V_snprintf(m_szSPDir, MAX_GAME_PATH, "%s%s", m_szGameDir, sp_ADDON_BASE);
6060

6161
// Fix slashes

src/loader/loader_main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void* SPLoadLibrary( IVEngineServer* engine, const char* libraryPath )
8383
V_strncpy(szError, "[SP-LOADER] - No error found\n", 1024);
8484

8585
engine->GetGameDir(szGamePath, 1024);
86-
GenerateSymlink(szGamePath);
86+
GenerateSymlink(szGamePath);
8787

8888
V_snprintf(szFullPath, sizeof(szFullPath), "%s/addons/source-python/%s",
8989
szGamePath, libraryPath);
@@ -175,7 +175,7 @@ bool CSourcePython::Load( CreateInterfaceFn interfaceFactory, CreateInterfaceFn
175175
// Get the game directory.
176176
// ------------------------------------------------------------------
177177
engine->GetGameDir(szGameDir, 1024);
178-
GenerateSymlink(szGameDir);
178+
GenerateSymlink(szGameDir);
179179

180180
// ------------------------------------------------------------------
181181
// Load windows dependencies.

0 commit comments

Comments
 (0)