Skip to content

Commit

Permalink
Tc569-6 / fix bug for SETTAMAHWND
Browse files Browse the repository at this point in the history
  • Loading branch information
ponapalt committed Feb 12, 2022
1 parent 6620929 commit 98d69dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions aya5.rc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 5,69,5,0
FILEVERSION 5,69,6,0
PRODUCTVERSION 5,0,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
Expand All @@ -47,7 +47,7 @@ BEGIN
VALUE "Comments", "YAYA\0"
VALUE "CompanyName", "YAYA Development Team\0"
VALUE "FileDescription", "yaya\0"
VALUE "FileVersion", "5, 69, 5, 0\0"
VALUE "FileVersion", "5, 69, 6, 0\0"
VALUE "InternalName", "Yet Another AYA5\0"
VALUE "LegalCopyright", " \0"
VALUE "LegalTrademarks", " \0"
Expand Down
5 changes: 3 additions & 2 deletions log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ void CLog::Start(const yaya::string_t &p, int cs, HWND hw, char il)
{
iolog = il;

if ( open ) {
if ( path != p || charset != cs ) {
if( open ) {
if(path != p || charset != cs || hw != hWnd) {
Termination();
}
else {
Expand Down Expand Up @@ -80,6 +80,7 @@ void CLog::Start(const yaya::string_t &p, int cs, HWND hw, char il)
}
else {
fileen = 0;
enable = 1;
if(
loghandler == NULL
#if defined(WIN32)
Expand Down
2 changes: 1 addition & 1 deletion manifest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "manifest.h"

const yaya::char_t *aya_name = L"YAYA";
const yaya::char_t *aya_version = L"Tc569-5";
const yaya::char_t *aya_version = L"Tc569-6";
const yaya::char_t *aya_author = L"umeici/The Maintenance Shop";


Expand Down

0 comments on commit 98d69dc

Please sign in to comment.