mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-04 22:15:33 +02:00
Begin the un-physfs-ening
This commit is contained in:
parent
0d512ee6ad
commit
4b7bd4a10a
3 changed files with 4 additions and 9 deletions
|
@ -136,9 +136,3 @@ def pbScreenCapture
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
alias old_pbDrawTextPositions pbDrawTextPositions
|
|
||||||
def pbDrawTextPositions(bitmap,textpos)
|
|
||||||
old_pbDrawTextPositions(bitmap, textpos.each{|i|i[2] += 4})
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#import "eventthread.h"
|
#import "eventthread.h"
|
||||||
#import "exception.h"
|
#import "exception.h"
|
||||||
#import "font.h"
|
#import "font.h"
|
||||||
#import "rgssad.h"
|
//#import "rgssad.h"
|
||||||
#import "sharedstate.h"
|
#import "sharedstate.h"
|
||||||
#import "util.h"
|
#import "util.h"
|
||||||
|
|
||||||
|
@ -295,14 +295,16 @@ FileSystem::FileSystem(const char *argv0, bool allowSymlinks) {
|
||||||
throwPhysfsError("Error initializing PhysFS");
|
throwPhysfsError("Error initializing PhysFS");
|
||||||
|
|
||||||
/* One error (=return 0) turns the whole product to 0 */
|
/* One error (=return 0) turns the whole product to 0 */
|
||||||
|
/*
|
||||||
int er = 1;
|
int er = 1;
|
||||||
|
|
||||||
er *= PHYSFS_registerArchiver(&RGSS1_Archiver);
|
er *= PHYSFS_registerArchiver(&RGSS1_Archiver);
|
||||||
er *= PHYSFS_registerArchiver(&RGSS2_Archiver);
|
er *= PHYSFS_registerArchiver(&RGSS2_Archiver);
|
||||||
er *= PHYSFS_registerArchiver(&RGSS3_Archiver);
|
er *= PHYSFS_registerArchiver(&RGSS3_Archiver);
|
||||||
|
|
||||||
if (er == 0)
|
if (er == 0)
|
||||||
throwPhysfsError("Error registering PhysFS RGSS archiver");
|
throwPhysfsError("Error registering PhysFS RGSS archiver");
|
||||||
|
*/
|
||||||
p = new FileSystemPrivate;
|
p = new FileSystemPrivate;
|
||||||
p->havePathCache = false;
|
p->havePathCache = false;
|
||||||
|
|
||||||
|
|
|
@ -100,7 +100,6 @@ main_source = files(
|
||||||
'sdlsoundsource.cpp',
|
'sdlsoundsource.cpp',
|
||||||
'alstream.cpp',
|
'alstream.cpp',
|
||||||
'audiostream.cpp',
|
'audiostream.cpp',
|
||||||
'rgssad.cpp',
|
|
||||||
'vorbissource.cpp',
|
'vorbissource.cpp',
|
||||||
'windowvx.cpp',
|
'windowvx.cpp',
|
||||||
'tilemapvx.cpp',
|
'tilemapvx.cpp',
|
||||||
|
|
Loading…
Add table
Reference in a new issue