Changeset - r8812:554e8dcfb34c
[Not reviewed]
master
0 3 0
smatz - 16 years ago 2008-04-04 00:06:51
smatz@openttd.org
(svn r12557) -Cleanup: use MAX_PATH at two more places
3 files changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/music.cpp
Show inline comments
 
@@ -2,6 +2,7 @@
 

	
 
/** @file music.cpp */
 

	
 
#include "stdafx.h"
 
#include "music.h"
 

	
 
const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE] = {
src/music.h
Show inline comments
 
@@ -9,7 +9,7 @@
 
#define NUM_SONGS_AVAILABLE 22
 

	
 
struct SongSpecs {
 
	char filename[256];
 
	char filename[MAX_PATH];
 
	char song_name[64];
 
};
 

	
src/strgen/strgen.cpp
Show inline comments
 
@@ -1287,7 +1287,7 @@ static inline char *replace_pathsep(char
 

	
 
int CDECL main(int argc, char* argv[])
 
{
 
	char pathbuf[256];
 
	char pathbuf[MAX_PATH];
 
	const char *src_dir = ".";
 
	const char *dest_dir = NULL;
 

	
0 comments (0 inline, 0 general)