mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 22:57:45 +00:00
fix pcb_reader ignoring windows paths in arguments
This commit is contained in:
parent
c4991c8c52
commit
10f6e43148
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ int main( int argc, char* argv[] )
|
||||||
if( argc > 2 )
|
if( argc > 2 )
|
||||||
{
|
{
|
||||||
std::string tmpPath( argv[2] );
|
std::string tmpPath( argv[2] );
|
||||||
if( !( tmpPath.empty() || tmpPath.find( '/' ) == std::string::npos ) )
|
if( !tmpPath.empty() )
|
||||||
gamePath = argv[2];
|
gamePath = argv[2];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue