mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 05:35:41 +12:00
Fix 2player for real
This commit is contained in:
parent
de6a626f10
commit
c40c965d7e
5 changed files with 9 additions and 9 deletions
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.8.68.0")]
|
[assembly: AssemblyVersion("1.8.73.0")]
|
||||||
[assembly: AssemblyFileVersion("1.8.68.0")]
|
[assembly: AssemblyFileVersion("1.8.73.0")]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Package: hisp
|
Package: hisp
|
||||||
Version: 1.8.68
|
Version: 1.8.73
|
||||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||||
Maintainer: Li
|
Maintainer: Li
|
||||||
Homepage: https://islehorse.com
|
Homepage: https://islehorse.com
|
||||||
|
|
|
@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.8.68.0")]
|
[assembly: AssemblyVersion("1.8.73.0")]
|
||||||
[assembly: AssemblyFileVersion("1.8.68.0")]
|
[assembly: AssemblyFileVersion("1.8.73.0")]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -309,9 +309,9 @@ namespace HISP.Server
|
||||||
// this is used for *most* SwfModule
|
// this is used for *most* SwfModule
|
||||||
public static byte[] CreateForwardedSwfModule(byte[] request)
|
public static byte[] CreateForwardedSwfModule(byte[] request)
|
||||||
{
|
{
|
||||||
byte[] packet = new byte[1 + (request.Length-1)];
|
byte[] packet = new byte[1 + (request.Length-3)];
|
||||||
packet[0] = PACKET_SWFMODULE;
|
packet[0] = PACKET_SWFMODULE;
|
||||||
Array.Copy(request, 0, packet, 1, (request.Length-2));
|
Array.Copy(request, 2, packet, 1, (request.Length-3));
|
||||||
return packet;
|
return packet;
|
||||||
}
|
}
|
||||||
// Creates a byte array that contains "Bird Map" data
|
// Creates a byte array that contains "Bird Map" data
|
||||||
|
|
|
@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.8.68.0")]
|
[assembly: AssemblyVersion("1.8.73.0")]
|
||||||
[assembly: AssemblyFileVersion("1.8.68.0")]
|
[assembly: AssemblyFileVersion("1.8.73.0")]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue