summaryrefslogtreecommitdiff
path: root/games/smc/smc1.8_boost1.36.patch
diff options
context:
space:
mode:
authorPhillip Warner <pc_warner@yahoo.com>2010-05-13 00:27:05 +0200
committerDavid Somero <xgizzmo@slackbuilds.org>2010-05-13 00:27:05 +0200
commitcdf1299955ee9b0360a3a5a5369fd04280a6bdfe (patch)
treef821ec9fcd6f2f64cde885598601fd4d72beb599 /games/smc/smc1.8_boost1.36.patch
parent37e835c26178c64ebfff3d6f1227af0174f1dc76 (diff)
downloadslackbuilds-cdf1299955ee9b0360a3a5a5369fd04280a6bdfe.tar.gz
games/smc: Updated for version 1.9
Diffstat (limited to 'games/smc/smc1.8_boost1.36.patch')
-rw-r--r--games/smc/smc1.8_boost1.36.patch63
1 files changed, 0 insertions, 63 deletions
diff --git a/games/smc/smc1.8_boost1.36.patch b/games/smc/smc1.8_boost1.36.patch
deleted file mode 100644
index 3f8c8173a5..0000000000
--- a/games/smc/smc1.8_boost1.36.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-diff -Naru smc-1.8-orig/src/core/game_core.cpp smc-1.8/src/core/game_core.cpp
---- smc-1.8-orig/src/core/game_core.cpp 2009-04-08 00:48:08.000000000 -0500
-+++ smc-1.8/src/core/game_core.cpp 2009-06-05 23:26:43.000000000 -0500
-@@ -1632,32 +1632,32 @@
- if( fs::is_directory( *dir_itr ) )
- {
- // ignore hidden directories
-- if( dir_itr->leaf().find( "." ) == 0 )
-+ if( dir_itr->filename().find( "." ) == 0 )
- {
- continue;
- }
-
- if( with_directories )
- {
-- valid_files.push_back( dir + "/" + dir_itr->leaf() );
-+ valid_files.push_back( dir + "/" + dir_itr->filename() );
- }
-
- // load all items from the sub-directory
- if( search_in_sub_directories )
- {
-- vector<std::string> new_valid_files = Get_Directory_Files( dir + "/" + dir_itr->leaf(), file_type, with_directories );
-+ vector<std::string> new_valid_files = Get_Directory_Files( dir + "/" + dir_itr->filename(), file_type, with_directories );
- valid_files.insert( valid_files.end(), new_valid_files.begin(), new_valid_files.end() );
- }
- }
- // valid file
-- else if( file_type.empty() || dir_itr->leaf().rfind( file_type ) != std::string::npos )
-+ else if( file_type.empty() || dir_itr->filename().rfind( file_type ) != std::string::npos )
- {
-- valid_files.push_back( dir + "/" + dir_itr->leaf() );
-+ valid_files.push_back( dir + "/" + dir_itr->filename() );
- }
- }
- catch( const std::exception &ex )
- {
-- printf( "%s %s\n", dir_itr->leaf().c_str(), ex.what() );
-+ printf( "%s %s\n", dir_itr->filename().c_str(), ex.what() );
- }
- }
-
-diff -Naru smc-1.8-orig/src/overworld/world_manager.cpp smc-1.8/src/overworld/world_manager.cpp
---- smc-1.8-orig/src/overworld/world_manager.cpp 2009-02-17 22:10:12.000000000 -0600
-+++ smc-1.8/src/overworld/world_manager.cpp 2009-06-05 23:27:21.000000000 -0500
-@@ -116,7 +116,7 @@
- {
- try
- {
-- std::string current_dir = dir_itr->leaf();
-+ std::string current_dir = dir_itr->filename();
-
- // only directories with an existing description
- if( fs::is_directory( *dir_itr ) && File_Exists( dir + "/" + current_dir + "/description.xml" ) )
-@@ -143,7 +143,7 @@
- }
- catch( const std::exception &ex )
- {
-- printf( "%s %s\n", dir_itr->leaf().c_str(), ex.what() );
-+ printf( "%s %s\n", dir_itr->filename().c_str(), ex.what() );
- }
- }
- }