Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 38613
Collapse All | Expand All

(-)StepMania-3.9-alpha7-src.orig/src/BannerCache.cpp (-1 / +1 lines)
Lines 20-26 Link Here
20
20
21
#include "Banner.h"
21
#include "Banner.h"
22
22
23
#define CACHE_DIR BASE_PATH "Cache" SLASH
23
#define CACHE_DIR GENTOO_CACHE_DIR
24
24
25
/* Call CacheBanner to cache a banner by path.  If the banner is already
25
/* Call CacheBanner to cache a banner by path.  If the banner is already
26
 * cached, it'll be recreated.  This is efficient if the banner hasn't changed,
26
 * cached, it'll be recreated.  This is efficient if the banner hasn't changed,
(-)StepMania-3.9-alpha7-src.orig/src/Song.cpp (-1 / +1 lines)
Lines 47-53 Link Here
47
47
48
#include <set>
48
#include <set>
49
49
50
#define CACHE_DIR BASE_PATH "Cache" SLASH
50
#define CACHE_DIR GENTOO_CACHE_DIR
51
51
52
const int FILE_CACHE_VERSION = 129;	// increment this when Song or Steps changes to invalidate cache
52
const int FILE_CACHE_VERSION = 129;	// increment this when Song or Steps changes to invalidate cache
53
53
(-)StepMania-3.9-alpha7-src.orig/src/SongCacheIndex.cpp (-1 / +1 lines)
Lines 9-15 Link Here
9
#include "song.h"
9
#include "song.h"
10
#include "arch/arch.h"
10
#include "arch/arch.h"
11
11
12
#define CACHE_DIR BASE_PATH "Cache" SLASH
12
#define CACHE_DIR GENTOO_CACHE_DIR
13
13
14
SongCacheIndex *SONGINDEX;
14
SongCacheIndex *SONGINDEX;
15
15
(-)StepMania-3.9-alpha7-src.orig/src/arch/LoadingWindow/LoadingWindow_Gtk.cpp (-1 / +1 lines)
Lines 16-22 Link Here
16
try {
16
try {
17
	ASSERT( Handle == NULL );
17
	ASSERT( Handle == NULL );
18
	
18
	
19
	Handle = dlopen( DirOfExecutable + "/" + "GtkModule.so", RTLD_NOW );
19
	Handle = dlopen( CString(GENTOO_LIBDIR) + "/" + "GtkModule.so", RTLD_NOW );
20
	if( Handle == NULL )
20
	if( Handle == NULL )
21
		RageException::Throw("dlopen(): %s", dlerror());
21
		RageException::Throw("dlopen(): %s", dlerror());
22
22
(-)StepMania-3.9-alpha7-src.orig/src/arch/arch.h (-1 / +1 lines)
Lines 50-56 Link Here
50
#if defined(_XBOX)
50
#if defined(_XBOX)
51
	#define BASE_PATH "D:\\"
51
	#define BASE_PATH "D:\\"
52
#else
52
#else
53
	#define BASE_PATH ""
53
	#define BASE_PATH GENTOO_BASE_PATH
54
#endif
54
#endif
55
55
56
56

Return to bug 38613