Begin the un-physfs-ening

This commit is contained in:
Struma 2020-04-23 10:42:47 -04:00 committed by Roza
parent 0d512ee6ad
commit 4b7bd4a10a
3 changed files with 4 additions and 9 deletions

View file

@ -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

View file

@ -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;

View file

@ -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',