diff --git a/OpenTaiko/Readme.txt b/OpenTaiko/Readme.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/OpenTaiko/src/Common/Program.cs b/OpenTaiko/src/Common/Program.cs index 447ebf0d..eddab2fb 100644 --- a/OpenTaiko/src/Common/Program.cs +++ b/OpenTaiko/src/Common/Program.cs @@ -74,8 +74,9 @@ namespace OpenTaiko { osplatform = "osx"; else if (OperatingSystem.IsLinux()) osplatform = "linux"; + // this is gonna be redundant code i hope? :3 -tfd else - throw new PlatformNotSupportedException("TJAPlayer3-f does not support this OS."); + throw new PlatformNotSupportedException("OpenTaiko does not support this OS."); string platform = ""; @@ -93,7 +94,7 @@ namespace OpenTaiko { platform = "arm64"; break; default: - throw new PlatformNotSupportedException($"TJAPlayer3 does not support this Architecture. ({RuntimeInformation.ProcessArchitecture})"); + throw new PlatformNotSupportedException($"OpenTaiko does not support this architecture. ({RuntimeInformation.ProcessArchitecture})"); } FFmpeg.AutoGen.ffmpeg.RootPath = AppContext.BaseDirectory + @"FFmpeg/" + osplatform + "-" + platform + "/"; @@ -107,8 +108,8 @@ namespace OpenTaiko { using (var mania = new OpenTaiko()) mania.Run(); - Trace.WriteLine(""); - Trace.WriteLine("遊んでくれてありがとう!"); + Trace.WriteLine( "" ); + Trace.WriteLine( "Thank you for playing!" ); } #if !DEBUG catch( Exception e ) @@ -117,6 +118,9 @@ namespace OpenTaiko { Trace.WriteLine( "OpenTaiko ran into an unexpected error, and can't continue from here! Σ(っ °Д °;)っ" ); Trace.WriteLine( "More details: " ); Trace.Write( e.ToString() ); + Trace.WriteLine( "" ); + Trace.WriteLine( "An error has occured." ); + AssemblyName asmApp = Assembly.GetExecutingAssembly().GetName(); } #endif // END #24606 2011.03.08 from diff --git a/OpenTaiko/src/Stages/05.SongSelect/CActSelect曲リスト.cs b/OpenTaiko/src/Stages/05.SongSelect/CActSelect曲リスト.cs index 49fb7de8..1bb7e4ea 100644 --- a/OpenTaiko/src/Stages/05.SongSelect/CActSelect曲リスト.cs +++ b/OpenTaiko/src/Stages/05.SongSelect/CActSelect曲リスト.cs @@ -910,15 +910,16 @@ namespace OpenTaiko { } #endregion #region [ "曲データを検索しています"画像 ] - try { - this.txEnumeratingSongs = new CTexture(ft曲リスト用フォント.DrawText("Now enumerating songs.\nPlease wait...", Color.White)); - this.txEnumeratingSongs.vcScaleRatio = new Vector3D(0.5f, 0.5f, 1f); // 半分のサイズで表示する。 + try + { + this.txEnumeratingSongs = new CTexture(ft曲リスト用フォント.DrawText("Now loading songs.\nPlease wait...", Color.White)); + this.txEnumeratingSongs.vcScaleRatio = new Vector3D( 0.5f, 0.5f, 1f ); // 半分のサイズで表示する。 /* using ( Bitmap image = new Bitmap( 640, 96 ) ) using ( Graphics graphics = Graphics.FromImage( image ) ) { - string[] s1 = { "曲データを検索しています。", "Now enumerating songs." }; + string[] s1 = { "曲データを検索しています。", "Now loading songs." }; string[] s2 = { "そのまましばらくお待ち下さい。", "Please wait..." }; graphics.DrawString( s1[c], this.ft曲リスト用フォント, Brushes.DarkGray, (float) 2f, (float) 2f ); graphics.DrawString( s1[c], this.ft曲リスト用フォント, Brushes.White, (float) 0f, (float) 0f ); diff --git a/Readme.txt b/Readme.txt deleted file mode 100644 index e69de29b..00000000