Skip to content

Commit

Permalink
bug fix | dev update
Browse files Browse the repository at this point in the history
  • Loading branch information
AppOfficer committed Mar 15, 2023
1 parent 7c8aa59 commit 38cf178
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion LGgame.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,8 @@ namespace LGlocal {
else delay_fps(LGgame::gameSpeed);
// avefps = (avefps * avefpsc + getfps()) / (avefpsc + 1);
// ++avefpsc;
LGgame::flushSpeed = ceil((timePassed.count() / 1'000'000'000.0L) * 300 - LGgame::curTurn);
if(LGgame::gameSpeed != -1) LGgame::flushSpeed = 1;
else LGgame::flushSpeed = ceil((timePassed.count() / 1'000'000'000.0L) * 300 - LGgame::curTurn);
lastFlushTurn = LGgame::curTurn;
}
}
Expand Down
8 changes: 4 additions & 4 deletions LocalGen.dev
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ UnitCount=8
[VersionInfo]
Major=3
Minor=0
Release=0
Build=1398
Release=1
Build=1400
LanguageID=1033
CharsetID=1252
CompanyName=LocalGen-dev
FileVersion=3.0.0.1398
FileVersion=3.0.1.1400
FileDescription=Local Generals.io (new ver.)
InternalName=
LegalCopyright=Copyright (c) 2023 LocalGen-dev
Expand All @@ -48,7 +48,7 @@ OriginalFilename=
ProductName=Local Generals.io (new ver.)
ProductVersion=3.0.0.1398
AutoIncBuildNr=1
SyncProduct=1
SyncProduct=0

[Unit1]
FileName=LGbot.hpp
Expand Down
8 changes: 4 additions & 4 deletions LocalGen_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
#define LOCALGEN_PRIVATE_H

/* VERSION DEFINITIONS */
#define VER_STRING "3.0.0.1398"
#define VER_STRING "3.0.1.1400"
#define VER_MAJOR 3
#define VER_MINOR 0
#define VER_RELEASE 0
#define VER_BUILD 1398
#define VER_RELEASE 1
#define VER_BUILD 1400
#define COMPANY_NAME "LocalGen-dev"
#define FILE_VERSION "3.0.0.1398"
#define FILE_VERSION "3.0.1.1400"
#define FILE_DESCRIPTION "Local Generals.io (new ver.)"
#define INTERNAL_NAME ""
#define LEGAL_COPYRIGHT "Copyright (c) 2023 LocalGen-dev"
Expand Down
6 changes: 3 additions & 3 deletions LocalGen_private.rc
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ A ICON "LocalGen.ico"
// TO CHANGE VERSION INFORMATION, EDIT PROJECT OPTIONS...
//
1 VERSIONINFO
FILEVERSION 3,0,0,1398
PRODUCTVERSION 3,0,0,1398
FILEVERSION 3,0,1,1400
PRODUCTVERSION 3,0,1,1400
FILETYPE VFT_APP
{
BLOCK "StringFileInfo"
{
BLOCK "040904E4"
{
VALUE "CompanyName", "LocalGen-dev"
VALUE "FileVersion", "3.0.0.1398"
VALUE "FileVersion", "3.0.1.1400"
VALUE "FileDescription", "Local Generals.io (new ver.)"
VALUE "InternalName", ""
VALUE "LegalCopyright", "Copyright (c) 2023 LocalGen-dev"
Expand Down

0 comments on commit 38cf178

Please sign in to comment.