shithub: cstory

Download patch

ref: 18986336024c6c9c3631adb3a4d8f94e53bc62a6
parent: ff45da6a0ecd990e67c626335ae4a6efc58ca5e2
author: Clownacy <Clownacy@users.noreply.github.com>
date: Thu Apr 16 10:05:44 EDT 2020

Found a name for `nameless_flag`!

--- a/src/Organya.cpp
+++ b/src/Organya.cpp
@@ -760,7 +760,7 @@
 /*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
 UINT ExactTime   = 13;	// 最小精度 (Minimum accuracy)
 UINT TimerID;
-BOOL nameless_flag;
+BOOL bTimer;
 
 /*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
 // タイマー精度を設定する。 (Set timer accuracy.)
@@ -809,7 +809,7 @@
 	if (ret != TIMERR_NOERROR)
 		return FALSE;
 
-	nameless_flag = TRUE;
+	bTimer = TRUE;
 
 	return TRUE;
 }
@@ -843,7 +843,7 @@
 {
 	MMRESULT ret;
 
-	if (!nameless_flag)
+	if (!bTimer)
 		return FALSE;
 
 	if(TimerID != TIMERR_NOERROR)
@@ -859,7 +859,7 @@
 	if (ret != TIMERR_NOERROR)
 		return FALSE;
 
-	nameless_flag = FALSE;
+	bTimer = FALSE;
 
 	return TRUE;
 }