1
0
mirror of https://github.com/moparisthebest/Simba synced 2025-02-07 02:30:19 -05:00

Revnumber + compiling filestream fix, yay!

This commit is contained in:
Raymond 2010-04-11 21:58:06 +02:00
parent 6d8da49050
commit aa57a27f12
2 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ uses
CastaliaSimplePasPar, v_AutoCompleteForm, PSDump; CastaliaSimplePasPar, v_AutoCompleteForm, PSDump;
const const
SimbaVersion = 618; SimbaVersion = 620;
type type

View File

@ -191,13 +191,13 @@ begin
end; end;
end; end;
{{$IFDEF FPC} {
// mh: because FPC doesn't handle pointers to overloaded functions // mh: because FPC doesn't handle pointers to overloaded functions
function TFileStreamCreate(filename: string; mode: word): TFileStream; function TFileStreamCreate(filename: string; mode: word): TFileStream;
begin begin
result := TFilestream.Create(filename, mode); result := TFilestream.Create(filename, mode);
end; end;}
{$ENDIF}}
procedure RIRegisterTFILESTREAM(Cl: TPSRuntimeClassImporter); procedure RIRegisterTFILESTREAM(Cl: TPSRuntimeClassImporter);
begin begin