shithub: cstory

Download patch

ref: 0907027a82630c429f927d336636569443f293cf
parent: 9f40c68ab298301d32880db9512d10d3a515dff4
parent: 8114f88dd1f27674e2a43527c943ae7e8e0cb1e7
author: Clownacy <Clownacy@users.noreply.github.com>
date: Fri Sep 6 15:30:23 EDT 2019

Merge branch 'accurate' into portable

--- a/src/Generic.cpp
+++ b/src/Generic.cpp
@@ -27,7 +27,7 @@
 	months[10] = "Oct";
 	months[11] = "Nov";
 	months[12] = "Dec";
-	sscanf(__DATE__, "%s %d %d", &month_string, day, year);
+	sscanf(__DATE__, "%s %d %d", month_string, day, year);
 
 	for (i = 0; i < 12; ++i)	// This being 12 instead of 13 might be a bug, but it works anyway by accident
 		if (!memcmp(&month_string, months[i], 3))
--- a/src/Organya.cpp
+++ b/src/Organya.cpp
@@ -351,7 +351,7 @@
 			case 1:	// 再生 (Playback)
 				AudioBackend_StopSound(lpSECONDARYBUFFER[150 + track]);
 				AudioBackend_RewindSound(lpSECONDARYBUFFER[150 + track]);
-				ChangeDramFrequency(key, track);	// 周波数を設定して ()
+				ChangeDramFrequency(key, track);	// 周波数を設定して (Set the frequency)
 				AudioBackend_PlaySound(lpSECONDARYBUFFER[150 + track], FALSE);
 				break;
 
--