mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
released v1.5.40
This commit is contained in:
@@ -32,6 +32,7 @@ using GameRes.Compression;
|
||||
using GameRes.Utility;
|
||||
|
||||
// [041001][Innocence] China Chaime+
|
||||
// [041029][Tam's] Fukushuu no Ori ~OL Kankin Ryoujoku no Yakata~
|
||||
// [041224][Tam's] Volga Series 1
|
||||
|
||||
namespace GameRes.Formats.Ags32i
|
||||
@@ -52,7 +53,7 @@ namespace GameRes.Formats.Ags32i
|
||||
|
||||
public GssFormat ()
|
||||
{
|
||||
Signatures = new uint[] { 0x20575A52, 0x20574242, 0 };
|
||||
Signatures = new uint[] { 0x20575A52, 0x20574242, 0x20574346, 0 };
|
||||
}
|
||||
|
||||
//static readonly uint DefaultKey = 0x20040915;
|
||||
|
||||
@@ -27,6 +27,8 @@ using System.Collections.Generic;
|
||||
using System.ComponentModel.Composition;
|
||||
using System.IO;
|
||||
|
||||
// [980529][Brownie] Dawn Slave
|
||||
|
||||
namespace GameRes.Formats.Brownie
|
||||
{
|
||||
[Export(typeof(ArchiveFormat))]
|
||||
|
||||
@@ -28,6 +28,9 @@ using System.ComponentModel.Composition;
|
||||
using System.IO;
|
||||
using GameRes.Compression;
|
||||
|
||||
// [030725][Digital Monkey] Kono Sora ga Tsuieru Toki ni
|
||||
// [041112][Yumesta] Seikon ~Kiba to Nie to Kyouki no Yakata~
|
||||
|
||||
namespace GameRes.Formats.DigitalMonkey
|
||||
{
|
||||
[Export(typeof(ArchiveFormat))]
|
||||
|
||||
@@ -27,6 +27,8 @@ using System.ComponentModel.Composition;
|
||||
using System.IO;
|
||||
using System.Windows.Media;
|
||||
|
||||
// [000310][Mermaid] Into Your World
|
||||
|
||||
namespace GameRes.Formats.Mermaid
|
||||
{
|
||||
internal class MgMetaData : ImageMetaData
|
||||
@@ -35,9 +37,7 @@ namespace GameRes.Formats.Mermaid
|
||||
public int TileCount;
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
[Export(typeof(ImageFormat))]
|
||||
#endif
|
||||
public class MgFormat : ImageFormat
|
||||
{
|
||||
public override string Tag { get { return "MG1"; } }
|
||||
@@ -93,7 +93,7 @@ namespace GameRes.Formats.Mermaid
|
||||
for (int y = tile_count-1; y >= 0; --y)
|
||||
{
|
||||
int tile_dst = dst + y * tile_width;
|
||||
for (int x = 0; x < tile_count; ++x)
|
||||
for (int x = 0; x < stride; x += tile_width)
|
||||
{
|
||||
if (tile_dst + tile_width > pixels.Length)
|
||||
file.Seek (tile_width, SeekOrigin.Current);
|
||||
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion ("1.0.6.129")]
|
||||
[assembly: AssemblyFileVersion ("1.0.6.129")]
|
||||
[assembly: AssemblyVersion ("1.0.7.157")]
|
||||
[assembly: AssemblyFileVersion ("1.0.7.157")]
|
||||
|
||||
Reference in New Issue
Block a user